We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4fb4163 + c11b19c commit c12f574Copy full SHA for c12f574
1 file changed
services/core/java/com/android/server/wm/WindowManagerService.java
@@ -9099,6 +9099,11 @@ public int handleAppTransitionReadyLocked(WindowList windows) {
9099
// gotten drawn.
9100
wtoken.allDrawn = true;
9101
wtoken.deferClearAllDrawn = false;
9102
+ // Ensure that apps that are mid-starting are also scheduled to have their
9103
+ // starting windows removed after the animation is complete
9104
+ if (wtoken.startingWindow != null && !wtoken.startingWindow.mExiting) {
9105
+ scheduleRemoveStartingWindow(wtoken);
9106
+ }
9107
9108
if (animLp != null) {
9109
int layer = -1;
0 commit comments