diff options
author | Jim Miller <jaggies@google.com> | 2015-04-03 19:29:13 -0700 |
---|---|---|
committer | Jim Miller <jaggies@google.com> | 2015-04-11 12:34:56 -0700 |
commit | ce7eb6daf06a88129da365eb2112537ce0bb1b75 (patch) | |
tree | c6959d77746bf325a981a7c22dfa6c666a5140c2 /packages/SystemUI/src/com/android/systemui/keyguard | |
parent | 6036cd51265d31c08eefe0470a9f37e7f757aae8 (diff) | |
download | frameworks_base-ce7eb6daf06a88129da365eb2112537ce0bb1b75.zip frameworks_base-ce7eb6daf06a88129da365eb2112537ce0bb1b75.tar.gz frameworks_base-ce7eb6daf06a88129da365eb2112537ce0bb1b75.tar.bz2 |
Clean up FingerprintManager API and make it public.
Change-Id: I6a99dccd485c053cb47dbd0ec08b41a2dc5b17c8
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/keyguard')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java | 5 |
1 files changed, 5 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 d8e732e..065d62e 100644 --- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java @@ -1376,9 +1376,14 @@ public class KeyguardViewMediator extends SystemUI { updateActivityLockScreenState(); adjustStatusBarLocked(); sendUserPresentBroadcast(); + maybeStopListeningForFingerprint(); } } + private void maybeStopListeningForFingerprint() { + mUpdateMonitor.stopListeningForFingerprint(); + } + private void adjustStatusBarLocked() { if (mStatusBarManager == null) { mStatusBarManager = (StatusBarManager) |