Merge "Update visibility in moveTaskToBack if nothing is resumed" into qt-dev am: e004297aa1

am: e1bd7d85a1

Change-Id: I0de8639fe67039e8d12531b785a7529a077b9495
This commit is contained in:
Evan Rosky
2019-06-07 18:33:22 -07:00
committed by android-build-merger

View File

@@ -4998,6 +4998,17 @@ class ActivityStack extends ConfigurationContainer {
return true;
}
ActivityRecord topActivity = getDisplay().topRunningActivity();
ActivityStack topStack = topActivity.getActivityStack();
if (topStack != null && topStack != this && topActivity.isState(RESUMED)) {
// The new top activity is already resumed, so there's a good chance that nothing will
// get resumed below. So, update visibility now in case the transition is closed
// prematurely.
mRootActivityContainer.ensureVisibilityAndConfig(null /* starting */,
getDisplay().mDisplayId, false /* markFrozenIfConfigChanged */,
false /* deferResume */);
}
mRootActivityContainer.resumeFocusedStacksTopActivities();
return true;
}