Merge "Skip sync invisible & lifecycle-unlreated window for an Activity." into udc-qpr-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
7786667ad2
@@ -5677,6 +5677,12 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
|
||||
// TODO(b/233286785): Add sync support to wallpaper.
|
||||
return true;
|
||||
}
|
||||
if (mActivityRecord != null && mViewVisibility != View.VISIBLE
|
||||
&& mWinAnimator.mAttrType != TYPE_BASE_APPLICATION
|
||||
&& mWinAnimator.mAttrType != TYPE_APPLICATION_STARTING) {
|
||||
// Skip sync for invisible app windows which are not managed by activity lifecycle.
|
||||
return false;
|
||||
}
|
||||
// In the WindowContainer implementation we immediately mark ready
|
||||
// since a generic WindowContainer only needs to wait for its
|
||||
// children to finish and is immediately ready from its own
|
||||
|
||||
Reference in New Issue
Block a user