blob: ec5d040eb681c9f5aaa029e9ca8d075bee57ab3d [file] [log] [blame]
Daniel Sandler69bdee72012-10-23 16:45:50 -04001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jim Miller5ecd8112013-01-09 18:50:26 -080017package com.android.keyguard;
Daniel Sandler69bdee72012-10-23 16:45:50 -040018
19import android.content.Context;
Daniel Sandler69bdee72012-10-23 16:45:50 -040020import android.text.InputType;
Daniel Sandler69bdee72012-10-23 16:45:50 -040021import android.text.TextWatcher;
22import android.text.method.DigitsKeyListener;
Michael Jurka1254f2f2012-10-25 11:44:31 -070023import android.util.AttributeSet;
24import android.view.View;
Jorim Jaggi15a77f72014-05-28 16:20:03 +020025import android.view.ViewGroup;
Daniel Sandler69bdee72012-10-23 16:45:50 -040026import android.widget.TextView.OnEditorActionListener;
27
Daniel Sandler69bdee72012-10-23 16:45:50 -040028/**
29 * Displays a PIN pad for unlocking.
30 */
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070031public class KeyguardPINView extends KeyguardPinBasedInputView {
Daniel Sandler69bdee72012-10-23 16:45:50 -040032
Jorim Jaggi15a77f72014-05-28 16:20:03 +020033 private final AppearAnimationUtils mAppearAnimationUtils;
34 private ViewGroup mKeyguardBouncerFrame;
35 private ViewGroup mRow0;
36 private ViewGroup mRow1;
37 private ViewGroup mRow2;
38 private ViewGroup mRow3;
39 private View mDivider;
40
Daniel Sandler69bdee72012-10-23 16:45:50 -040041 public KeyguardPINView(Context context) {
42 this(context, null);
43 }
44
45 public KeyguardPINView(Context context, AttributeSet attrs) {
46 super(context, attrs);
Jorim Jaggi15a77f72014-05-28 16:20:03 +020047 mAppearAnimationUtils = new AppearAnimationUtils(context);
Daniel Sandler69bdee72012-10-23 16:45:50 -040048 }
49
50 protected void resetState() {
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070051 super.resetState();
Danielle Millett1625e872012-11-01 15:00:12 -040052 if (KeyguardUpdateMonitor.getInstance(mContext).getMaxBiometricUnlockAttemptsReached()) {
53 mSecurityMessageDisplay.setMessage(R.string.faceunlock_multiple_failures, true);
54 } else {
55 mSecurityMessageDisplay.setMessage(R.string.kg_pin_instructions, false);
56 }
Daniel Sandler69bdee72012-10-23 16:45:50 -040057 }
58
59 @Override
Daniel Sandler8a26bf52012-10-30 13:29:50 -040060 protected int getPasswordTextViewId() {
61 return R.id.pinEntry;
62 }
63
64 @Override
Daniel Sandler69bdee72012-10-23 16:45:50 -040065 protected void onFinishInflate() {
66 super.onFinishInflate();
67
Jorim Jaggi15a77f72014-05-28 16:20:03 +020068 mKeyguardBouncerFrame = (ViewGroup) findViewById(R.id.keyguard_bouncer_frame);
69 mRow0 = (ViewGroup) findViewById(R.id.row0);
70 mRow1 = (ViewGroup) findViewById(R.id.row1);
71 mRow2 = (ViewGroup) findViewById(R.id.row2);
72 mRow3 = (ViewGroup) findViewById(R.id.row3);
73 mDivider = findViewById(R.id.divider);
Daniel Sandler69bdee72012-10-23 16:45:50 -040074 }
Adam Cohen6fb841f2012-10-24 13:15:38 -070075
76 @Override
77 public void showUsabilityHint() {
78 }
Daniel Sandler16d90922012-11-01 12:41:14 -040079
80 @Override
81 public int getWrongPasswordStringId() {
82 return R.string.kg_wrong_pin;
83 }
Jorim Jaggic14f8292014-05-27 02:25:45 +020084
85 @Override
86 public void startAppearAnimation() {
Jorim Jaggi15a77f72014-05-28 16:20:03 +020087 enableClipping(false);
88 setTranslationY(mAppearAnimationUtils.getStartTranslation());
89 animate()
90 .setDuration(500)
91 .setInterpolator(mAppearAnimationUtils.getInterpolator())
92 .translationY(0);
93 mAppearAnimationUtils.startAppearAnimation(new View[][] {
94 new View[] {
95 mRow0, null, null
96 },
97 new View[] {
98 findViewById(R.id.key1), findViewById(R.id.key2), findViewById(R.id.key3)
99 },
100 new View[] {
101 findViewById(R.id.key4), findViewById(R.id.key5), findViewById(R.id.key6)
102 },
103 new View[] {
104 findViewById(R.id.key7), findViewById(R.id.key8), findViewById(R.id.key9)
105 },
106 new View[] {
107 null, findViewById(R.id.key0), findViewById(R.id.key_enter)
108 },
109 new View[] {
110 null, mEcaView, null
111 }},
112 new Runnable() {
113 @Override
114 public void run() {
115 enableClipping(true);
116 }
117 });
118 }
119
120 private void enableClipping(boolean enable) {
121 mKeyguardBouncerFrame.setClipToPadding(enable);
122 mKeyguardBouncerFrame.setClipChildren(enable);
123 mRow1.setClipToPadding(enable);
124 mRow2.setClipToPadding(enable);
125 mRow3.setClipToPadding(enable);
126 setClipChildren(enable);
Jorim Jaggic14f8292014-05-27 02:25:45 +0200127 }
Michael Jurka1254f2f2012-10-25 11:44:31 -0700128}