Loading libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java +12 −2 Original line number Diff line number Diff line Loading @@ -2643,12 +2643,22 @@ public class BubbleController implements ConfigurationChangeListener, mIsStatusBarShade, hasBubbles()); if (!mIsStatusBarShade) { // Bubbles don't appear when the device is locked. mBubblesRootView.setVisibility(INVISIBLE); if (mStackView != null) { mStackView.setVisibility(INVISIBLE); } if (mLayerView != null) { mLayerView.setVisibility(INVISIBLE); } } else if (hasBubbles()) { // If we're unlocked, show the stack if we have bubbles. If we don't have bubbles, the // stack will be set to INVISIBLE in onAllBubblesAnimatedOut after the bubbles animate // out. mBubblesRootView.setVisibility(VISIBLE); if (mStackView != null) { mStackView.setVisibility(VISIBLE); } if (mLayerView != null) { mLayerView.setVisibility(VISIBLE); } } if (mStackView != null) { Loading Loading
libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java +12 −2 Original line number Diff line number Diff line Loading @@ -2643,12 +2643,22 @@ public class BubbleController implements ConfigurationChangeListener, mIsStatusBarShade, hasBubbles()); if (!mIsStatusBarShade) { // Bubbles don't appear when the device is locked. mBubblesRootView.setVisibility(INVISIBLE); if (mStackView != null) { mStackView.setVisibility(INVISIBLE); } if (mLayerView != null) { mLayerView.setVisibility(INVISIBLE); } } else if (hasBubbles()) { // If we're unlocked, show the stack if we have bubbles. If we don't have bubbles, the // stack will be set to INVISIBLE in onAllBubblesAnimatedOut after the bubbles animate // out. mBubblesRootView.setVisibility(VISIBLE); if (mStackView != null) { mStackView.setVisibility(VISIBLE); } if (mLayerView != null) { mLayerView.setVisibility(VISIBLE); } } if (mStackView != null) { Loading