Merge "Skip sync invisible & lifecycle-unlreated window for an Activity." into udc-qpr-dev

This commit is contained in:
Wei Sheng Shih
2023-08-02 02:15:06 +00:00
committed by Android (Google) Code Review

View File

@@ -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