Loading packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +6 −0 Original line number Diff line number Diff line Loading @@ -2334,6 +2334,12 @@ public class KeyguardViewMediator implements CoreStartable, Dumpable, Log.e(TAG, "doKeyguard: we're still showing, but going away. Re-show the " + "keyguard rather than short-circuiting and resetting."); } else { // We're removing "reset" in the refactor - "resetting" the views will happen // as a reaction to the root cause of the "reset" signal. if (KeyguardWmStateRefactor.isEnabled()) { return; } // It's already showing, and we're not trying to show it while the screen is // off. We can simply reset all of the views, but don't hide the bouncer in case // the user is currently interacting with it. Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java +5 −1 Original line number Diff line number Diff line Loading @@ -972,8 +972,12 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb if (isOccluded && !mDozing) { mCentralSurfaces.hideKeyguard(); if (hideBouncerWhenShowing || needsFullscreenBouncer()) { // We're removing "reset" in the refactor - bouncer will be hidden by the root // cause of the "reset" calls. if (!KeyguardWmStateRefactor.isEnabled()) { hideBouncer(false /* destroyView */); } } } else { showBouncerOrKeyguard(hideBouncerWhenShowing, isFalsingReset); } Loading Loading
packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +6 −0 Original line number Diff line number Diff line Loading @@ -2334,6 +2334,12 @@ public class KeyguardViewMediator implements CoreStartable, Dumpable, Log.e(TAG, "doKeyguard: we're still showing, but going away. Re-show the " + "keyguard rather than short-circuiting and resetting."); } else { // We're removing "reset" in the refactor - "resetting" the views will happen // as a reaction to the root cause of the "reset" signal. if (KeyguardWmStateRefactor.isEnabled()) { return; } // It's already showing, and we're not trying to show it while the screen is // off. We can simply reset all of the views, but don't hide the bouncer in case // the user is currently interacting with it. Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java +5 −1 Original line number Diff line number Diff line Loading @@ -972,8 +972,12 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb if (isOccluded && !mDozing) { mCentralSurfaces.hideKeyguard(); if (hideBouncerWhenShowing || needsFullscreenBouncer()) { // We're removing "reset" in the refactor - bouncer will be hidden by the root // cause of the "reset" calls. if (!KeyguardWmStateRefactor.isEnabled()) { hideBouncer(false /* destroyView */); } } } else { showBouncerOrKeyguard(hideBouncerWhenShowing, isFalsingReset); } Loading