diff options
author | Aarthi Balachander <aarthibc@google.com> | 2018-07-13 15:00:58 -0700 |
---|---|---|
committer | Aarthi Balachander <aarthibc@google.com> | 2018-07-20 16:29:00 +0000 |
commit | 0a427ef5c13496f1242bfcc0995a707bb50c6ac3 (patch) | |
tree | e6f4deeed2af753f05178f62ea04cb2887307dc2 /packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java | |
parent | 9c512f1c216e328de1da04a734d4eeba0db30db4 (diff) |
Show the user switcher only when the bouncer cancel button is pressed.
Bug: 110534280
Test: Tested on device
Change-Id: Iff465ebf5089e023a27e1ec192a580c20b35d242
(cherry picked from commit e2a6edceb007847cc8026b47c365a68610a074f7)
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java')
-rw-r--r-- | packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java b/packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java index adb246013d5d..a3862eb72362 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java @@ -112,6 +112,7 @@ public class KeyguardPINView extends KeyguardPinBasedInputView { if (cancelBtn != null) { cancelBtn.setOnClickListener(view -> { mCallback.reset(); + mCallback.onCancelClicked(); }); } } |