Merge "DO NOT MERGE Adding additional null checks for BubbleController." into qt-qpr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
297a84231f
@@ -2638,7 +2638,7 @@ public class StatusBar extends SystemUI implements DemoMode,
|
||||
if (mRemoteInputManager.getController() != null) {
|
||||
mRemoteInputManager.getController().closeRemoteInputs();
|
||||
}
|
||||
if (mBubbleController.isStackExpanded()) {
|
||||
if (mBubbleController != null && mBubbleController.isStackExpanded()) {
|
||||
mBubbleController.collapseStack();
|
||||
}
|
||||
if (mLockscreenUserManager.isCurrentProfile(getSendingUserId())) {
|
||||
@@ -2654,7 +2654,7 @@ public class StatusBar extends SystemUI implements DemoMode,
|
||||
if (mStatusBarWindowController != null) {
|
||||
mStatusBarWindowController.setNotTouchable(false);
|
||||
}
|
||||
if (mBubbleController.isStackExpanded()) {
|
||||
if (mBubbleController != null && mBubbleController.isStackExpanded()) {
|
||||
mBubbleController.collapseStack();
|
||||
}
|
||||
finishBarAnimations();
|
||||
@@ -3386,7 +3386,9 @@ public class StatusBar extends SystemUI implements DemoMode,
|
||||
if (mNotificationPanel.canPanelBeCollapsed()) {
|
||||
animateCollapsePanels();
|
||||
} else {
|
||||
mBubbleController.performBackPressIfNeeded();
|
||||
if (mBubbleController != null) {
|
||||
mBubbleController.performBackPressIfNeeded();
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user