summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Robin Lee <rgl@google.com> 2023-04-04 14:11:06 +0000
committer Robin Lee <rgl@google.com> 2023-04-04 14:11:12 +0000
commitc52deb2b38f109c482003f14e26848aff8a8f5d2 (patch)
tree1f06d702cdee638801664e9d30bf5d991e16ec01
parent068e0087b52358f471b390535970a46a7854ff04 (diff)
After keyguard exit animation, finish before notifying
Change-Id: I591fe31294ec56fd28b3e893868fe213c037fff4 Test: atest android.server.wm.KeyguardTests Test: microbench/systemui/main/systemui-lockscreen-1-jank-suite Test: atest PlatformScenarioTests:android.platform.test.scenario.sysui.notification.ExpandNotificationByDragging Bug: 276503488 Bug: 276572219
-rw-r--r--packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
index b1efdd733faa..c102c5b57375 100644
--- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
+++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
@@ -2856,14 +2856,14 @@ public class KeyguardViewMediator implements CoreStartable, Dumpable,
+ " wasShowing=" + wasShowing);
}
+ mKeyguardUnlockAnimationControllerLazy.get()
+ .notifyFinishedKeyguardExitAnimation(cancelled);
finishSurfaceBehindRemoteAnimation(cancelled);
// Dispatch the callback on animation finishes.
mUpdateMonitor.dispatchKeyguardDismissAnimationFinished();
});
- mKeyguardUnlockAnimationControllerLazy.get().notifyFinishedKeyguardExitAnimation(
- cancelled);
}
/**