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

12

/frameworks/support/compat/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/compat/gingerbread/android/support/v4/view/
H A DViewCompatBase.java112 static boolean isAttachedToWindow(View view) { method in class:ViewCompatBase
157 if (isAttachedToWindow(view)) {
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DForwardingListener.java103 boolean mIsAttached = ViewCompat.isAttachedToWindow(mSrc);
108 mIsAttached = ViewCompat.isAttachedToWindow(mSrc);
H A DAppCompatSpinner.java832 return ViewCompat.isAttachedToWindow(view) && view.getGlobalVisibleRect(mVisibleRect);
/frameworks/support/fragment/tests/java/android/support/v4/app/
H A DFragmentLifecycleTest.java195 ViewCompat.isAttachedToWindow(view));
203 ViewCompat.isAttachedToWindow(view));
221 assertTrue("fragment 1's view not attached", ViewCompat.isAttachedToWindow(origView1));
230 ViewCompat.isAttachedToWindow(origView1));
233 assertTrue("fragment 2's view not attached", ViewCompat.isAttachedToWindow(origView2));
241 assertFalse("fragment 2's view still attached", ViewCompat.isAttachedToWindow(origView2));
244 assertTrue("fragment 1's view not attached", ViewCompat.isAttachedToWindow(newView1));
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/animations/
H A DViewFocusAnimator.java143 if (mTargetView.isAttachedToWindow() && mTargetView.hasWindowFocus() &&
/frameworks/base/core/java/android/app/
H A DEnterTransitionCoordinator.java100 || !view.isAttachedToWindow()) {
145 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 DGridView.java1361 && accessibilityFocusLayoutRestoreView.isAttachedToWindow()) {
1459 * @param isAttachedToWindow {@code true} if the view is already attached
1466 boolean selected, boolean isAttachedToWindow, int where) {
1475 final boolean needToMeasure = !isAttachedToWindow || updateChildSelected
1510 if (isAttachedToWindow && !p.forceAdd) {
1515 if (!isAttachedToWindow
1465 setupChild(View child, int position, int y, boolean flowDown, int childrenLeft, boolean selected, boolean isAttachedToWindow, int where) argument
H A DListView.java1830 && accessibilityFocusLayoutRestoreView.isAttachedToWindow()) {
1990 * @param isAttachedToWindow {@code true} if the view is already attached
1995 boolean selected, boolean isAttachedToWindow) {
2004 final boolean needToMeasure = !isAttachedToWindow || updateChildSelected
2036 if ((isAttachedToWindow && !p.forceAdd) || (p.recycledHeaderFooter
2042 if (isAttachedToWindow
2278 if (mAdapter == null || !isAttachedToWindow()) {
1994 setupChild(View child, int position, int y, boolean flowDown, int childrenLeft, boolean selected, boolean isAttachedToWindow) argument
H A DImageView.java943 if (!sCompatDrawableVisibilityDispatch && !sameDrawable && isAttachedToWindow()) {
959 : isAttachedToWindow() && getWindowVisibility() == VISIBLE && isShown();
H A DVideoView.java876 final boolean attachedToWindow = isAttachedToWindow();
H A DListPopupWindow.java1267 if (mDropDownList != null && mDropDownList.isAttachedToWindow()
H A DSwitch.java1080 if (isAttachedToWindow() && isLaidOut()) {
/frameworks/base/core/java/com/android/internal/policy/
H A DBackdropFrameRenderer.java405 if (mDecorView.isAttachedToWindow()) {
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardHostView.java76 if (!isAttachedToWindow()) return;
/frameworks/support/compat/java/android/support/v4/view/
H A DViewCompat.java482 boolean isAttachedToWindow(View view); method in interface:ViewCompat.ViewCompatImpl
1121 public boolean isAttachedToWindow(View view) { method in class:ViewCompat.BaseViewCompatImpl
1122 return ViewCompatBase.isAttachedToWindow(view);
1612 public boolean isAttachedToWindow(View view) { method in class:ViewCompat.KitKatViewCompatImpl
1613 return ViewCompatKitKat.isAttachedToWindow(view);
3485 public static boolean isAttachedToWindow(View view) { method in class:ViewCompat
3486 return IMPL.isAttachedToWindow(view);
/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.java326 if (isAttachedToWindow()) {
549 if (changed && isAttachedToWindow()) {
H A DActivatableNotificationView.java316 if (!isAttachedToWindow()) {
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java778 if (mView.isAttachedToWindow()) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputView.java447 if (isAttachedToWindow()) {
/frameworks/support/design/src/android/support/design/widget/
H A DBottomSheetBehavior.java546 if (parent != null && parent.isLayoutRequested() && ViewCompat.isAttachedToWindow(child)) {

Completed in 552 milliseconds

12