Merge "Hide Keyguard view after remote animation" into sc-v2-dev am: b2aca4718f

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15365824

Change-Id: Ief1b1efa9c4d50e5ee193af1a4e2c53e71911727
This commit is contained in:
Chris Li
2021-07-27 16:30:36 +00:00
committed by Automerger Merge Worker

View File

@@ -2369,7 +2369,7 @@ public class KeyguardViewMediator extends SystemUI implements Dumpable,
final boolean wasShowing = mShowing; final boolean wasShowing = mShowing;
onKeyguardExitFinished(); onKeyguardExitFinished();
if (mKeyguardStateController.isDismissingFromSwipe() || !wasShowing) { if (mKeyguardStateController.isDismissingFromSwipe() || wasShowing) {
mKeyguardUnlockAnimationControllerLazy.get().hideKeyguardViewAfterRemoteAnimation(); mKeyguardUnlockAnimationControllerLazy.get().hideKeyguardViewAfterRemoteAnimation();
} }