diff options
| -rw-r--r-- | services/core/java/com/android/server/am/ActivityStarter.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/services/core/java/com/android/server/am/ActivityStarter.java b/services/core/java/com/android/server/am/ActivityStarter.java index 1166ae18387a..6614e638b983 100644 --- a/services/core/java/com/android/server/am/ActivityStarter.java +++ b/services/core/java/com/android/server/am/ActivityStarter.java @@ -1037,6 +1037,9 @@ class ActivityStarter { // make sure it becomes visible as it starts (this will also trigger entry // animation). An example of this are PIP activities. mTargetStack.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS); + // Go ahead and tell window manager to execute app transition for this activity + // since the app transition will not be triggered through the resume channel. + mWindowManager.executeAppTransition(); } } else { mTargetStack.addRecentActivityLocked(mStartActivity); |