Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java +5 −1 Original line number Diff line number Diff line Loading @@ -1316,7 +1316,11 @@ public class NotificationPanelView extends PanelView implements } else if (oldState == StatusBarState.SHADE_LOCKED && statusBarState == StatusBarState.KEYGUARD) { animateKeyguardStatusBarIn(StackStateAnimator.ANIMATION_DURATION_STANDARD); // Only animate header if the header is visible. If not, it will partially animate out // the top of QS if (!mQsExpanded) { mQs.animateHeaderSlidingOut(); } } else { mKeyguardStatusBar.setAlpha(1f); mKeyguardStatusBar.setVisibility(keyguardShowing ? View.VISIBLE : View.INVISIBLE); Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java +7 −1 Original line number Diff line number Diff line Loading @@ -661,7 +661,13 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb public boolean onBackPressed(boolean hideImmediately) { if (mBouncer.isShowing()) { mStatusBar.endAffordanceLaunch(); // The second condition is for SIM card locked bouncer if (mBouncer.isScrimmed() && !mBouncer.needsFullscreenBouncer()) { hideBouncer(false); updateStates(); } else { reset(hideImmediately); } return true; } return false; Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java +5 −1 Original line number Diff line number Diff line Loading @@ -1316,7 +1316,11 @@ public class NotificationPanelView extends PanelView implements } else if (oldState == StatusBarState.SHADE_LOCKED && statusBarState == StatusBarState.KEYGUARD) { animateKeyguardStatusBarIn(StackStateAnimator.ANIMATION_DURATION_STANDARD); // Only animate header if the header is visible. If not, it will partially animate out // the top of QS if (!mQsExpanded) { mQs.animateHeaderSlidingOut(); } } else { mKeyguardStatusBar.setAlpha(1f); mKeyguardStatusBar.setVisibility(keyguardShowing ? View.VISIBLE : View.INVISIBLE); Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java +7 −1 Original line number Diff line number Diff line Loading @@ -661,7 +661,13 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb public boolean onBackPressed(boolean hideImmediately) { if (mBouncer.isShowing()) { mStatusBar.endAffordanceLaunch(); // The second condition is for SIM card locked bouncer if (mBouncer.isScrimmed() && !mBouncer.needsFullscreenBouncer()) { hideBouncer(false); updateStates(); } else { reset(hideImmediately); } return true; } return false; Loading