diff options
author | Lucas Dupin <dupin@google.com> | 2018-10-24 15:26:34 -0700 |
---|---|---|
committer | Lucas Dupin <dupin@google.com> | 2018-10-25 16:37:04 +0000 |
commit | 33b4c28c325b90ed7be1e0cdd9e269dbb0942d6f (patch) | |
tree | 36358527fdb2794f90240616fd50354f88fe85cf /packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java | |
parent | c63d1cc434ea7422d6f9ef2bd396e1b0b0ec7cac (diff) |
Animate backspace when unlocking
Bug: 111405682
Fixes: 118414397
Test: visual
Change-Id: Ie5af400e9869558832939debdb61190d6d32f3d7
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java')
-rw-r--r-- | packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java b/packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java index a3862eb72362..a543d1712299 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardPINView.java @@ -102,7 +102,8 @@ public class KeyguardPINView extends KeyguardPinBasedInputView { findViewById(R.id.key9) }, new View[]{ - null, findViewById(R.id.key0), findViewById(R.id.key_enter) + findViewById(R.id.delete_button), findViewById(R.id.key0), + findViewById(R.id.key_enter) }, new View[]{ null, mEcaView, null |