DO NOT MERGE Hide EmptyShadeView when on bouncer

Added a check to make sure EmptyShadeView is hidden when bouncer is showing.

Bug: 267060171
Test: manually verified EmptyShadeView visibility
Change-Id: I2bfdc7801cec1b3aaa44f841d8a821214c6cb801
(cherry picked from commit bef2be6757)
This commit is contained in:
Shawn Lee
2023-04-17 15:05:23 -07:00
parent b8dfb743ba
commit 2e640447d1
2 changed files with 3 additions and 1 deletions

View File

@@ -2843,6 +2843,7 @@ public final class NotificationPanelViewController implements Dumpable {
/** Set whether the bouncer is showing. */
public void setBouncerShowing(boolean bouncerShowing) {
mBouncerShowing = bouncerShowing;
mNotificationStackScrollLayoutController.updateShowEmptyShadeView();
updateVisibility();
}

View File

@@ -1240,7 +1240,8 @@ public class NotificationStackScrollLayoutController {
// Hide empty shade view when in transition to Keyguard.
// That avoids "No Notifications" to blink when transitioning to AOD.
// For more details, see: b/228790482
&& !isInTransitionToKeyguard();
&& !isInTransitionToKeyguard()
&& !mCentralSurfaces.isBouncerShowing();
mView.updateEmptyShadeView(shouldShow, mZenModeController.areNotificationsHiddenInShade());