Loading services/core/java/com/android/server/wm/WindowState.java +6 −1 Original line number Diff line number Diff line Loading @@ -1633,7 +1633,7 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP || !mRelayoutCalled || (atoken == null && mToken.isHidden()) || (atoken != null && atoken.hiddenRequested) || isParentWindowHidden() || isParentWindowGoneForLayout() || (mAnimatingExit && !isAnimatingLw()) || mDestroying; } Loading Loading @@ -3848,6 +3848,11 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP return parent != null && parent.mHidden; } private boolean isParentWindowGoneForLayout() { final WindowState parent = getParentWindow(); return parent != null && parent.isGoneForLayoutLw(); } void setWillReplaceWindow(boolean animate) { for (int i = mChildren.size() - 1; i >= 0; i--) { final WindowState c = mChildren.get(i); Loading Loading
services/core/java/com/android/server/wm/WindowState.java +6 −1 Original line number Diff line number Diff line Loading @@ -1633,7 +1633,7 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP || !mRelayoutCalled || (atoken == null && mToken.isHidden()) || (atoken != null && atoken.hiddenRequested) || isParentWindowHidden() || isParentWindowGoneForLayout() || (mAnimatingExit && !isAnimatingLw()) || mDestroying; } Loading Loading @@ -3848,6 +3848,11 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP return parent != null && parent.mHidden; } private boolean isParentWindowGoneForLayout() { final WindowState parent = getParentWindow(); return parent != null && parent.isGoneForLayoutLw(); } void setWillReplaceWindow(boolean animate) { for (int i = mChildren.size() - 1; i >= 0; i--) { final WindowState c = mChildren.get(i); Loading