blob: 779289429e2f589ce16bd535403a6af2ee2afdb3 [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;
Michael Jurka1254f2f2012-10-25 11:44:31 -070020import android.util.AttributeSet;
21import android.view.View;
Jorim Jaggi15a77f72014-05-28 16:20:03 +020022import android.view.ViewGroup;
Jorim Jaggi76a16232014-08-08 17:00:47 +020023import android.view.animation.AnimationUtils;
Daniel Sandler69bdee72012-10-23 16:45:50 -040024
Jorim Jaggi56733532015-06-09 15:25:40 -070025import com.android.settingslib.animation.AppearAnimationUtils;
26import com.android.settingslib.animation.DisappearAnimationUtils;
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;
Selim Cinekf9c0e8f2014-11-11 13:41:02 +010034 private final DisappearAnimationUtils mDisappearAnimationUtils;
Jorim Jaggie8fde5d2016-06-30 23:41:37 -070035 private final DisappearAnimationUtils mDisappearAnimationUtilsLocked;
Jorim Jaggi6b88cdf2014-12-22 20:56:50 +010036 private ViewGroup mContainer;
Jorim Jaggi15a77f72014-05-28 16:20:03 +020037 private ViewGroup mRow0;
38 private ViewGroup mRow1;
39 private ViewGroup mRow2;
40 private ViewGroup mRow3;
41 private View mDivider;
Jorim Jaggi76a16232014-08-08 17:00:47 +020042 private int mDisappearYTranslation;
Selim Cinekf9c0e8f2014-11-11 13:41:02 +010043 private View[][] mViews;
Jorim Jaggie8fde5d2016-06-30 23:41:37 -070044 private final KeyguardUpdateMonitor mKeyguardUpdateMonitor;
Jorim Jaggi15a77f72014-05-28 16:20:03 +020045
Daniel Sandler69bdee72012-10-23 16:45:50 -040046 public KeyguardPINView(Context context) {
47 this(context, null);
48 }
49
50 public KeyguardPINView(Context context, AttributeSet attrs) {
51 super(context, attrs);
Jorim Jaggi15a77f72014-05-28 16:20:03 +020052 mAppearAnimationUtils = new AppearAnimationUtils(context);
Selim Cinekf9c0e8f2014-11-11 13:41:02 +010053 mDisappearAnimationUtils = new DisappearAnimationUtils(context,
54 125, 0.6f /* translationScale */,
Jorim Jaggi94f6f0612015-06-25 14:47:24 -070055 0.45f /* delayScale */, AnimationUtils.loadInterpolator(
Selim Cinekf9c0e8f2014-11-11 13:41:02 +010056 mContext, android.R.interpolator.fast_out_linear_in));
Jorim Jaggie8fde5d2016-06-30 23:41:37 -070057 mDisappearAnimationUtilsLocked = new DisappearAnimationUtils(context,
58 (long) (125 * KeyguardPatternView.DISAPPEAR_MULTIPLIER_LOCKED),
59 0.6f /* translationScale */,
60 0.45f /* delayScale */, AnimationUtils.loadInterpolator(
61 mContext, android.R.interpolator.fast_out_linear_in));
Jorim Jaggi76a16232014-08-08 17:00:47 +020062 mDisappearYTranslation = getResources().getDimensionPixelSize(
63 R.dimen.disappear_y_translation);
Jorim Jaggie8fde5d2016-06-30 23:41:37 -070064 mKeyguardUpdateMonitor = KeyguardUpdateMonitor.getInstance(context);
Daniel Sandler69bdee72012-10-23 16:45:50 -040065 }
66
Jim Miller4db942c2016-05-16 18:06:50 -070067 @Override
Daniel Sandler69bdee72012-10-23 16:45:50 -040068 protected void resetState() {
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070069 super.resetState();
Jorim Jaggi8a8941a2014-12-19 19:49:38 +010070 mSecurityMessageDisplay.setMessage(R.string.kg_pin_instructions, false);
Daniel Sandler69bdee72012-10-23 16:45:50 -040071 }
72
73 @Override
Daniel Sandler8a26bf52012-10-30 13:29:50 -040074 protected int getPasswordTextViewId() {
75 return R.id.pinEntry;
76 }
77
78 @Override
Daniel Sandler69bdee72012-10-23 16:45:50 -040079 protected void onFinishInflate() {
80 super.onFinishInflate();
81
Jorim Jaggi6b88cdf2014-12-22 20:56:50 +010082 mContainer = (ViewGroup) findViewById(R.id.container);
Jorim Jaggi15a77f72014-05-28 16:20:03 +020083 mRow0 = (ViewGroup) findViewById(R.id.row0);
84 mRow1 = (ViewGroup) findViewById(R.id.row1);
85 mRow2 = (ViewGroup) findViewById(R.id.row2);
86 mRow3 = (ViewGroup) findViewById(R.id.row3);
87 mDivider = findViewById(R.id.divider);
Selim Cinekf9c0e8f2014-11-11 13:41:02 +010088 mViews = new View[][]{
89 new View[]{
90 mRow0, null, null
91 },
92 new View[]{
93 findViewById(R.id.key1), findViewById(R.id.key2),
94 findViewById(R.id.key3)
95 },
96 new View[]{
97 findViewById(R.id.key4), findViewById(R.id.key5),
98 findViewById(R.id.key6)
99 },
100 new View[]{
101 findViewById(R.id.key7), findViewById(R.id.key8),
102 findViewById(R.id.key9)
103 },
104 new View[]{
105 null, findViewById(R.id.key0), findViewById(R.id.key_enter)
106 },
107 new View[]{
108 null, mEcaView, null
109 }};
Daniel Sandler69bdee72012-10-23 16:45:50 -0400110 }
Adam Cohen6fb841f2012-10-24 13:15:38 -0700111
112 @Override
113 public void showUsabilityHint() {
114 }
Daniel Sandler16d90922012-11-01 12:41:14 -0400115
116 @Override
117 public int getWrongPasswordStringId() {
118 return R.string.kg_wrong_pin;
119 }
Jorim Jaggic14f8292014-05-27 02:25:45 +0200120
121 @Override
122 public void startAppearAnimation() {
Jorim Jaggi15a77f72014-05-28 16:20:03 +0200123 enableClipping(false);
Jorim Jaggifb28c0e2014-08-22 16:28:42 +0200124 setAlpha(1f);
Jorim Jaggi15a77f72014-05-28 16:20:03 +0200125 setTranslationY(mAppearAnimationUtils.getStartTranslation());
Jorim Jaggi613f55f2015-07-16 15:30:10 -0700126 AppearAnimationUtils.startTranslationYAnimation(this, 0 /* delay */, 500 /* duration */,
127 0, mAppearAnimationUtils.getInterpolator());
Jorim Jaggi56733532015-06-09 15:25:40 -0700128 mAppearAnimationUtils.startAnimation2d(mViews,
Jorim Jaggi15a77f72014-05-28 16:20:03 +0200129 new Runnable() {
130 @Override
131 public void run() {
132 enableClipping(true);
133 }
134 });
135 }
136
Jorim Jaggi76a16232014-08-08 17:00:47 +0200137 @Override
Selim Cinekf9c0e8f2014-11-11 13:41:02 +0100138 public boolean startDisappearAnimation(final Runnable finishRunnable) {
139 enableClipping(false);
140 setTranslationY(0);
Jorim Jaggi613f55f2015-07-16 15:30:10 -0700141 AppearAnimationUtils.startTranslationYAnimation(this, 0 /* delay */, 280 /* duration */,
142 mDisappearYTranslation, mDisappearAnimationUtils.getInterpolator());
Jorim Jaggi031f7952016-09-01 16:39:26 -0700143 DisappearAnimationUtils disappearAnimationUtils = mKeyguardUpdateMonitor
144 .needsSlowUnlockTransition()
145 ? mDisappearAnimationUtils
146 : mDisappearAnimationUtilsLocked;
Jorim Jaggie8fde5d2016-06-30 23:41:37 -0700147 disappearAnimationUtils.startAnimation2d(mViews,
Selim Cinekf9c0e8f2014-11-11 13:41:02 +0100148 new Runnable() {
149 @Override
150 public void run() {
151 enableClipping(true);
152 if (finishRunnable != null) {
153 finishRunnable.run();
154 }
155 }
156 });
Jorim Jaggi76a16232014-08-08 17:00:47 +0200157 return true;
158 }
159
Jorim Jaggi15a77f72014-05-28 16:20:03 +0200160 private void enableClipping(boolean enable) {
Jorim Jaggi6b88cdf2014-12-22 20:56:50 +0100161 mContainer.setClipToPadding(enable);
162 mContainer.setClipChildren(enable);
Jorim Jaggi15a77f72014-05-28 16:20:03 +0200163 mRow1.setClipToPadding(enable);
164 mRow2.setClipToPadding(enable);
165 mRow3.setClipToPadding(enable);
166 setClipChildren(enable);
Jorim Jaggic14f8292014-05-27 02:25:45 +0200167 }
Jorim Jaggi76a16232014-08-08 17:00:47 +0200168
169 @Override
170 public boolean hasOverlappingRendering() {
171 return false;
172 }
Michael Jurka1254f2f2012-10-25 11:44:31 -0700173}