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

Commit 0c8d32f8 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Do not wait for invisible activity when turning on screen" into tm-qpr-dev

parents 611e9ca2 2430cb4e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2171,6 +2171,7 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
            return;
        }
        if (mActivityRecord != null) {
            if (!mActivityRecord.mVisibleRequested) return;
            if (mActivityRecord.allDrawn) {
                // The allDrawn of activity is reset when the visibility is changed to visible, so
                // the content should be ready if allDrawn is set.
+8 −0
Original line number Diff line number Diff line
@@ -673,6 +673,14 @@ public class WindowStateTests extends WindowTestsBase {
        // Keyguard host window should be always contained. The drawn app or app with starting
        // window are unnecessary to draw.
        assertEquals(Arrays.asList(keyguardHostWindow, startingWindow), outWaitingForDrawn);

        // No need to wait for a window of invisible activity even if the window has surface.
        final WindowState invisibleApp = mAppWindow;
        invisibleApp.mActivityRecord.mVisibleRequested = false;
        invisibleApp.mActivityRecord.allDrawn = false;
        outWaitingForDrawn.clear();
        invisibleApp.requestDrawIfNeeded(outWaitingForDrawn);
        assertTrue(outWaitingForDrawn.isEmpty());
    }

    @UseTestDisplay(addWindows = W_ABOVE_ACTIVITY)