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

12

/frameworks/support/v4/kitkat/android/support/v4/view/
H A DViewCompatKitKat.java37 public static boolean isAttachedToWindow(View view) { method in class:ViewCompatKitKat
38 return view.isAttachedToWindow();
/frameworks/support/v4/donut/android/support/v4/view/
H A DViewCompatBase.java109 static boolean isAttachedToWindow(View view) { method in class:ViewCompatBase
/frameworks/support/v4/tests/java/android/support/v4/app/
H A DFragmentLifecycleTest.java193 assertTrue("fragment 1's view is not attached to a window", view.isAttachedToWindow());
201 view.isAttachedToWindow());
219 assertTrue("fragment 1's view not attached", origView1.isAttachedToWindow());
227 assertFalse("fragment 1's old view still attached", origView1.isAttachedToWindow());
230 assertTrue("fragment 2's view not attached", origView2.isAttachedToWindow());
238 assertFalse("fragment 2's view still attached", origView2.isAttachedToWindow());
241 assertTrue("fragment 1's view not attached", newView1.isAttachedToWindow());
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/animations/
H A DViewFocusAnimator.java143 if (mTargetView.isAttachedToWindow() && mTargetView.hasWindowFocus() &&
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java474 boolean isAttachedToWindow(View view); method in interface:ViewCompat.ViewCompatImpl
1077 public boolean isAttachedToWindow(View view) { method in class:ViewCompat.BaseViewCompatImpl
1078 return ViewCompatBase.isAttachedToWindow(view);
1576 public boolean isAttachedToWindow(View view) { method in class:ViewCompat.KitKatViewCompatImpl
1577 return ViewCompatKitKat.isAttachedToWindow(view);
3379 public static boolean isAttachedToWindow(View view) { method in class:ViewCompat
3380 return IMPL.isAttachedToWindow(view);
/frameworks/base/core/java/android/app/
H A DEnterTransitionCoordinator.java94 || !view.isAttachedToWindow()) {
139 if (decor == null || (decor.isAttachedToWindow() &&
H A DActivityTransitionCoordinator.java252 if (isFirstRun && (view == null || !view.isAttachedToWindow() || name == null)) {
/frameworks/base/core/java/android/widget/
H A DTextClock.java570 if (isAttachedToWindow()) {
H A DImageView.java916 if (isAttachedToWindow()) {
929 if (isAttachedToWindow()) {
H A DVideoView.java878 final boolean attachedToWindow = isAttachedToWindow();
H A DListPopupWindow.java1267 if (mDropDownList != null && mDropDownList.isAttachedToWindow()
H A DSwitch.java1077 if (isAttachedToWindow() && isLaidOut()) {
H A DListView.java1830 && accessibilityFocusLayoutRestoreView.isAttachedToWindow()) {
2269 if (mAdapter == null || !isAttachedToWindow()) {
/frameworks/base/core/java/com/android/internal/policy/
H A DBackdropFrameRenderer.java398 if (mDecorView.isAttachedToWindow()) {
H A DDecorView.java1559 if (mPrimaryActionModeView == null || !mPrimaryActionModeView.isAttachedToWindow()) {
2041 if (isAttachedToWindow()) {
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardHostView.java76 if (!isAttachedToWindow()) return;
/frameworks/base/media/java/android/media/tv/
H A DTvView.java809 if (mSession == null || !isAttachedToWindow()
828 if (mSession == null || !isAttachedToWindow() || !mOverlayViewCreated
H A DTvInputService.java1417 if (mOverlayViewContainer == null || !mOverlayViewContainer.isAttachedToWindow()
1502 if (overlayViewParent.isAttachedToWindow()) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DSignalClusterView.java322 if (isAttachedToWindow()) {
536 if (changed && isAttachedToWindow()) {
H A DActivatableNotificationView.java313 if (!isAttachedToWindow()) {
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java778 if (mView.isAttachedToWindow()) {
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatSpinner.java828 return ViewCompat.isAttachedToWindow(view) && view.getGlobalVisibleRect(mVisibleRect);
H A DListPopupWindow.java1313 if (mDropDownList != null && ViewCompat.isAttachedToWindow(mDropDownList)
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DViewDataBinding.java164 if (!mRoot.isAttachedToWindow()) {
/frameworks/support/design/src/android/support/design/widget/
H A DCollapsingToolbarLayout.java395 mDrawCollapsingTitle = ViewCompat.isAttachedToWindow(mDummyView)

Completed in 6386 milliseconds

12