diff options
author | Adrian Roos <roosa@google.com> | 2014-10-27 14:20:30 +0100 |
---|---|---|
committer | Adrian Roos <roosa@google.com> | 2014-10-27 14:20:30 +0100 |
commit | b9ae09066c315a3bdb01e1bd9d3d21cd0e2ea3f1 (patch) | |
tree | 62d295101c12e1af551751e3dce03753c372cb64 /packages/SystemUI | |
parent | 5b820a8aa1a200824e44aede6bc1e381a6d69dd5 (diff) | |
download | frameworks_base-b9ae09066c315a3bdb01e1bd9d3d21cd0e2ea3f1.zip frameworks_base-b9ae09066c315a3bdb01e1bd9d3d21cd0e2ea3f1.tar.gz frameworks_base-b9ae09066c315a3bdb01e1bd9d3d21cd0e2ea3f1.tar.bz2 |
Fix stale unlock icon
Bug: 17405104
Change-Id: I2076c5008fc3617b8a0da5f547bbdca27ce875f4
Diffstat (limited to 'packages/SystemUI')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java index dd5df12..7d73a6038 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java @@ -477,6 +477,11 @@ public class KeyguardBottomAreaView extends FrameLayout implements View.OnClickL public void onScreenTurnedOff(int why) { updateLockIcon(); } + + @Override + public void onKeyguardVisibilityChanged(boolean showing) { + updateLockIcon(); + } }; public void setKeyguardIndicationController( |