diff options
author | Jorim Jaggi <jjaggi@google.com> | 2014-11-24 20:12:50 +0100 |
---|---|---|
committer | Jorim Jaggi <jjaggi@google.com> | 2014-11-26 14:07:49 +0000 |
commit | 95e89caeb252a54807c76d60c7440766829e418c (patch) | |
tree | 2e5de37ebfb86640fbb598cd2b0f976ed1045e4f /packages/SystemUI/src/com/android/systemui/keyguard | |
parent | 803a6dc080f883f95cc02f5c9ad850e73f8e76a8 (diff) | |
download | frameworks_base-95e89caeb252a54807c76d60c7440766829e418c.zip frameworks_base-95e89caeb252a54807c76d60c7440766829e418c.tar.gz frameworks_base-95e89caeb252a54807c76d60c7440766829e418c.tar.bz2 |
Fix jank when pin/pattern is shown
- Only update layout params of status bar window when needed
- Do not update security method all the time, only when needed (only
when reset gets called)
- Check for actual used security method when updating states for
bouncer
Bug: 18505838
Change-Id: Ib3d0021c0cc364fa5598e06e0a2bae059ae79cbe
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/keyguard')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java index 4e034ae..206fc43 100644 --- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java @@ -957,6 +957,7 @@ public class KeyguardViewMediator extends SystemUI { // if the keyguard is already showing, don't bother if (mStatusBarKeyguardViewManager.isShowing()) { if (DEBUG) Log.d(TAG, "doKeyguard: not showing because it is already showing"); + resetStateLocked(); return; } |