Merge "Start a visible requested activity if still in initializing state" into tm-dev am: bfccc9fdcd

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/17651824

Change-Id: Ifbdc39ec7ad50917779941e41e61675e4cea9b8e
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Louis Chang
2022-04-11 09:36:39 +00:00
committed by Automerger Merge Worker

View File

@@ -244,7 +244,7 @@ class EnsureActivitiesVisibleHelper {
// invisible. If the app is already visible, it must have died while it was visible. In this // invisible. If the app is already visible, it must have died while it was visible. In this
// case, we'll show the dead window but will not restart the app. Otherwise we could end up // case, we'll show the dead window but will not restart the app. Otherwise we could end up
// thrashing. // thrashing.
if (!isTop && r.mVisibleRequested) { if (!isTop && r.mVisibleRequested && !r.isState(INITIALIZING)) {
return; return;
} }