Searched refs:isAttachedToWindow (Results 1 - 25 of 80) sorted by relevance

1234

/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRequestPreparer.java67 if (!view.isAttachedToWindow()) {
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DNotificationBlockingHelperManagerTest.java98 when(row.isAttachedToWindow()).thenReturn(false);
111 when(row.isAttachedToWindow()).thenReturn(true);
209 when(row.isAttachedToWindow()).thenReturn(true);
/frameworks/av/packages/MediaComponents/src/com/android/widget/
H A DSubtitleView.java58 final boolean attachedToWindow = isAttachedToWindow();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationBlockingHelperManager.java126 if (mBlockingHelperRow.isAttachedToWindow()) {
H A DNotificationGuts.java263 if (isAttachedToWindow()) {
293 if (isAttachedToWindow()) {
/frameworks/support/emoji/core/src/main/java/androidx/emoji/widget/
H A DEmojiInputFilter.java110 if (textView != null && textView.isAttachedToWindow()) {
H A DEmojiTextWatcher.java121 if (editText != null && editText.isAttachedToWindow()) {
/frameworks/support/media/src/main/java/androidx/media/subtitle/
H A DClosedCaptionWidget.java155 final boolean needsListener = isAttachedToWindow() && getVisibility() == View.VISIBLE;
/frameworks/support/media-widget/src/main/java/androidx/media/widget/
H A DSubtitleView.java59 final boolean attachedToWindow = isAttachedToWindow();
/frameworks/base/core/java/android/transition/
H A DTransitionUtils.java162 final boolean addToOverlay = !view.isAttachedToWindow();
166 if (sceneRoot == null || !sceneRoot.isAttachedToWindow()) {
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DNearestTouchFrameTest.java95 when(left.isAttachedToWindow()).thenReturn(false);
183 when(v.isAttachedToWindow()).thenReturn(true);
/frameworks/support/transition/src/main/java/androidx/transition/
H A DTransitionUtils.java94 addToOverlay = !view.isAttachedToWindow();
95 sceneRootIsAttached = sceneRoot == null ? false : sceneRoot.isAttachedToWindow();
H A DViewOverlayApi14.java203 && ViewCompat.isAttachedToWindow(parent)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNearestTouchFrame.java100 .filter(v -> v.isAttachedToWindow())
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDateView.java127 if (isAttachedToWindow()) {
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DTooltipCompatHandler.java163 if (!ViewCompat.isAttachedToWindow(mAnchor)) {
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DMultiRecyclerViewPrefetchTest.java63 if (rv.isAttachedToWindow()) {
/frameworks/base/core/java/android/view/autofill/
H A DAutofillPopupWindow.java189 public boolean isAttachedToWindow() {
190 return anchor.isAttachedToWindow();
/frameworks/support/fragment/src/androidTest/java/androidx/fragment/app/
H A DPostponedTransitionTest.java725 assertTrue(mBeginningFragment.getView().isAttachedToWindow());
761 assertTrue(fragment2.getView().isAttachedToWindow());
824 assertTrue(fromFragment.getView().isAttachedToWindow());
825 assertTrue(toFragment.getView().isAttachedToWindow());
H A DFragmentLifecycleTest.java208 ViewCompat.isAttachedToWindow(view));
216 ViewCompat.isAttachedToWindow(view));
234 assertTrue("fragment 1's view not attached", ViewCompat.isAttachedToWindow(origView1));
243 ViewCompat.isAttachedToWindow(origView1));
246 assertTrue("fragment 2's view not attached", ViewCompat.isAttachedToWindow(origView2));
254 assertFalse("fragment 2's view still attached", ViewCompat.isAttachedToWindow(origView2));
257 assertTrue("fragment 1's view not attached", ViewCompat.isAttachedToWindow(newView1));
H A DFragmentAnimationTest.java307 assertTrue(ViewCompat.isAttachedToWindow(fragment1.getView()));
348 assertTrue(ViewCompat.isAttachedToWindow(fragment1.getView()));
H A DFragmentAnimatorTest.java397 assertTrue(ViewCompat.isAttachedToWindow(fragment1.getView()));
437 assertTrue(ViewCompat.isAttachedToWindow(fragment1.getView()));
/frameworks/support/media-widget/src/androidTest/java/androidx/media/widget/
H A DVideoView2Test.java127 if (!mVideoView.isAttachedToWindow()) {
/frameworks/base/core/java/android/app/
H A DEnterTransitionCoordinator.java110 || !view.isAttachedToWindow()) {
158 if (decor == null || (decor.isAttachedToWindow() &&
/frameworks/base/core/java/com/android/internal/policy/
H A DBackdropFrameRenderer.java394 if (mDecorView.isAttachedToWindow()) {

Completed in 661 milliseconds

1234