Loading packages/SystemUI/src/com/android/systemui/keyguard/KeyguardService.java +2 −0 Original line number Diff line number Diff line Loading @@ -273,6 +273,8 @@ public class KeyguardService extends Service { SurfaceControl.Transaction candidateT, IBinder currentTransition, IRemoteTransitionFinishedCallback candidateFinishCallback) { if ((candidateInfo.getFlags() & TRANSIT_FLAG_KEYGUARD_APPEARING) != 0) { Log.i(TAG, "Transition merged with keyguard appearing, setPendingLock(true) " + " and call cancelKeyguardExitAnimation()"); keyguardViewMediator.setPendingLock(true); keyguardViewMediator.cancelKeyguardExitAnimation(); return; Loading packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +7 −11 Original line number Diff line number Diff line Loading @@ -1957,12 +1957,10 @@ public class KeyguardViewMediator implements CoreStartable, // - The screen off animation is cancelled by the device waking back up. We will call // maybeHandlePendingLock from KeyguardViewMediator#onStartedWakingUp. if (mScreenOffAnimationController.shouldDelayKeyguardShow()) { if (DEBUG) { Log.d(TAG, "#maybeHandlePendingLock: not handling because the screen off " + "animation's shouldDelayKeyguardShow() returned true. This should be " + "handled soon by #onStartedWakingUp, or by the end actions of the " + "screen off animation."); } return; } Loading @@ -1973,11 +1971,9 @@ public class KeyguardViewMediator implements CoreStartable, // StatusBar#finishKeyguardFadingAway, which is always responsible for setting // isKeyguardGoingAway to false. if (mKeyguardStateController.isKeyguardGoingAway()) { if (DEBUG) { Log.d(TAG, "#maybeHandlePendingLock: not handling because the keyguard is " + "going away. This should be handled shortly by " + "StatusBar#finishKeyguardFadingAway."); } return; } Loading Loading
packages/SystemUI/src/com/android/systemui/keyguard/KeyguardService.java +2 −0 Original line number Diff line number Diff line Loading @@ -273,6 +273,8 @@ public class KeyguardService extends Service { SurfaceControl.Transaction candidateT, IBinder currentTransition, IRemoteTransitionFinishedCallback candidateFinishCallback) { if ((candidateInfo.getFlags() & TRANSIT_FLAG_KEYGUARD_APPEARING) != 0) { Log.i(TAG, "Transition merged with keyguard appearing, setPendingLock(true) " + " and call cancelKeyguardExitAnimation()"); keyguardViewMediator.setPendingLock(true); keyguardViewMediator.cancelKeyguardExitAnimation(); return; Loading
packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +7 −11 Original line number Diff line number Diff line Loading @@ -1957,12 +1957,10 @@ public class KeyguardViewMediator implements CoreStartable, // - The screen off animation is cancelled by the device waking back up. We will call // maybeHandlePendingLock from KeyguardViewMediator#onStartedWakingUp. if (mScreenOffAnimationController.shouldDelayKeyguardShow()) { if (DEBUG) { Log.d(TAG, "#maybeHandlePendingLock: not handling because the screen off " + "animation's shouldDelayKeyguardShow() returned true. This should be " + "handled soon by #onStartedWakingUp, or by the end actions of the " + "screen off animation."); } return; } Loading @@ -1973,11 +1971,9 @@ public class KeyguardViewMediator implements CoreStartable, // StatusBar#finishKeyguardFadingAway, which is always responsible for setting // isKeyguardGoingAway to false. if (mKeyguardStateController.isKeyguardGoingAway()) { if (DEBUG) { Log.d(TAG, "#maybeHandlePendingLock: not handling because the keyguard is " + "going away. This should be handled shortly by " + "StatusBar#finishKeyguardFadingAway."); } return; } Loading