Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 55ce4a5f authored by Wale Ogunwale's avatar Wale Ogunwale Committed by android-build-merger
Browse files

Merge \"Don\'t re-launch activities while the device is sleeping\" into nyc-dev

am: f6e3c9a5

Change-Id: I72d39e81ae786f18fb3991fb243837e802440311
parents ddfeb4a6 f6e3c9a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18714,7 +18714,7 @@ public final class ActivityManagerService extends ActivityManagerNative
                starting = mainStack.topRunningActivityLocked();
            }
            if (starting != null) {
            if (starting != null && starting.state != ActivityState.STOPPED) {
                kept = mainStack.ensureActivityConfigurationLocked(starting, changes, false);
                // And we need to make sure at this point that all other activities
                // are made visible with the correct configuration.
+2 −1
Original line number Diff line number Diff line
@@ -1820,7 +1820,8 @@ final class ActivityStack {
            boolean stackVisibleBehind, ActivityRecord visibleBehind,
            boolean behindFullscreenActivity) {

        if (!okToShowLocked(r)) {
        if (!okToShowLocked(r)
                || (mService.isSleepingOrShuttingDown() && r.voiceSession == null)) {
            return false;
        }