blob: 08691ec10d6a4fce76940bef26e74101692954ac [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;
20import android.content.res.TypedArray;
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070021import android.os.PowerManager;
22import android.os.SystemClock;
Daniel Sandler69bdee72012-10-23 16:45:50 -040023import android.util.AttributeSet;
Daniel Sandleracb60fb2012-10-25 10:46:37 -040024import android.view.HapticFeedbackConstants;
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070025import android.view.LayoutInflater;
Selim Cinek8b9f9482016-07-19 15:18:30 -070026import android.view.MotionEvent;
Daniel Sandler69bdee72012-10-23 16:45:50 -040027import android.view.View;
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070028import android.view.ViewGroup;
Daniel Sandler69bdee72012-10-23 16:45:50 -040029import android.widget.TextView;
30
Daniel Sandleracb60fb2012-10-25 10:46:37 -040031import com.android.internal.widget.LockPatternUtils;
Daniel Sandler69bdee72012-10-23 16:45:50 -040032
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070033public class NumPadKey extends ViewGroup {
Daniel Sandlerd5692742012-10-24 00:21:32 -040034 // list of "ABC", etc per digit, starting with '0'
35 static String sKlondike[];
Daniel Sandler69bdee72012-10-23 16:45:50 -040036
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070037 private int mDigit = -1;
38 private int mTextViewResId;
39 private PasswordTextView mTextView;
40 private TextView mDigitText;
41 private TextView mKlondikeText;
42 private boolean mEnableHaptics;
43 private PowerManager mPM;
Daniel Sandler69bdee72012-10-23 16:45:50 -040044
45 private View.OnClickListener mListener = new View.OnClickListener() {
46 @Override
47 public void onClick(View thisView) {
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070048 if (mTextView == null && mTextViewResId > 0) {
49 final View v = NumPadKey.this.getRootView().findViewById(mTextViewResId);
50 if (v != null && v instanceof PasswordTextView) {
51 mTextView = (PasswordTextView) v;
Daniel Sandler69bdee72012-10-23 16:45:50 -040052 }
53 }
Daniel Sandler6a64ac52012-11-01 11:58:13 -040054 if (mTextView != null && mTextView.isEnabled()) {
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070055 mTextView.append(Character.forDigit(mDigit, 10));
Daniel Sandler69bdee72012-10-23 16:45:50 -040056 }
Lucas Dupine3c9ccc2018-10-23 14:44:04 -070057 userActivity();
Daniel Sandler69bdee72012-10-23 16:45:50 -040058 }
59 };
60
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070061 public void userActivity() {
62 mPM.userActivity(SystemClock.uptimeMillis(), false);
63 }
64
Daniel Sandler69bdee72012-10-23 16:45:50 -040065 public NumPadKey(Context context) {
66 this(context, null);
67 }
68
69 public NumPadKey(Context context, AttributeSet attrs) {
70 this(context, attrs, 0);
71 }
72
73 public NumPadKey(Context context, AttributeSet attrs, int defStyle) {
Evan Rosky90427502016-04-01 16:04:23 -070074 this(context, attrs, defStyle, R.layout.keyguard_num_pad_key);
75 }
76
77 protected NumPadKey(Context context, AttributeSet attrs, int defStyle, int contentResource) {
Daniel Sandler69bdee72012-10-23 16:45:50 -040078 super(context, attrs, defStyle);
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070079 setFocusable(true);
Daniel Sandler69bdee72012-10-23 16:45:50 -040080
81 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.NumPadKey);
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070082
83 try {
84 mDigit = a.getInt(R.styleable.NumPadKey_digit, mDigit);
85 mTextViewResId = a.getResourceId(R.styleable.NumPadKey_textView, 0);
86 } finally {
87 a.recycle();
88 }
Daniel Sandler69bdee72012-10-23 16:45:50 -040089
90 setOnClickListener(mListener);
alanvc7375af2012-10-30 17:07:37 -070091 setOnHoverListener(new LiftToActivateListener(context));
Daniel Sandler69bdee72012-10-23 16:45:50 -040092
Daniel Sandleracb60fb2012-10-25 10:46:37 -040093 mEnableHaptics = new LockPatternUtils(context).isTactileFeedbackEnabled();
94
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070095 mPM = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
96 LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(
97 Context.LAYOUT_INFLATER_SERVICE);
Evan Rosky90427502016-04-01 16:04:23 -070098 inflater.inflate(contentResource, this, true);
Selim Cinek4e8b9ed2014-06-20 16:37:04 -070099
100 mDigitText = (TextView) findViewById(R.id.digit_text);
101 mDigitText.setText(Integer.toString(mDigit));
102 mKlondikeText = (TextView) findViewById(R.id.klondike_text);
103
Daniel Sandler69bdee72012-10-23 16:45:50 -0400104 if (mDigit >= 0) {
Daniel Sandlerd5692742012-10-24 00:21:32 -0400105 if (sKlondike == null) {
Selim Cinek4e8b9ed2014-06-20 16:37:04 -0700106 sKlondike = getResources().getStringArray(R.array.lockscreen_num_pad_klondike);
Daniel Sandlerd5692742012-10-24 00:21:32 -0400107 }
108 if (sKlondike != null && sKlondike.length > mDigit) {
Selim Cinek4e8b9ed2014-06-20 16:37:04 -0700109 String klondike = sKlondike[mDigit];
110 final int len = klondike.length();
111 if (len > 0) {
112 mKlondikeText.setText(klondike);
113 } else {
114 mKlondikeText.setVisibility(View.INVISIBLE);
Daniel Sandlerd5692742012-10-24 00:21:32 -0400115 }
Daniel Sandler69bdee72012-10-23 16:45:50 -0400116 }
117 }
Selim Cinek4e8b9ed2014-06-20 16:37:04 -0700118
Evan Rosky90427502016-04-01 16:04:23 -0700119 a = context.obtainStyledAttributes(attrs, android.R.styleable.View);
120 if (!a.hasValueOrEmpty(android.R.styleable.View_background)) {
Lucas Dupine3c9ccc2018-10-23 14:44:04 -0700121 setBackground(mContext.getDrawable(R.drawable.ripple_drawable_pin));
Evan Rosky90427502016-04-01 16:04:23 -0700122 }
123 a.recycle();
Adrian Roos42661cba2015-02-17 20:46:01 +0100124 setContentDescription(mDigitText.getText().toString());
Daniel Sandler69bdee72012-10-23 16:45:50 -0400125 }
126
alanv0cbbc572012-11-02 11:56:27 -0700127 @Override
Selim Cinek8b9f9482016-07-19 15:18:30 -0700128 public boolean onTouchEvent(MotionEvent event) {
129 if (event.getActionMasked() == MotionEvent.ACTION_DOWN) {
130 doHapticKeyClick();
131 }
132 return super.onTouchEvent(event);
133 }
134
135 @Override
Selim Cinek4e8b9ed2014-06-20 16:37:04 -0700136 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
137 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
138 measureChildren(widthMeasureSpec, heightMeasureSpec);
Daniel Sandler69bdee72012-10-23 16:45:50 -0400139 }
140
Selim Cinek4e8b9ed2014-06-20 16:37:04 -0700141 @Override
142 protected void onLayout(boolean changed, int l, int t, int r, int b) {
143 int digitHeight = mDigitText.getMeasuredHeight();
144 int klondikeHeight = mKlondikeText.getMeasuredHeight();
145 int totalHeight = digitHeight + klondikeHeight;
146 int top = getHeight() / 2 - totalHeight / 2;
147 int centerX = getWidth() / 2;
148 int left = centerX - mDigitText.getMeasuredWidth() / 2;
149 int bottom = top + digitHeight;
150 mDigitText.layout(left, top, left + mDigitText.getMeasuredWidth(), bottom);
151 top = (int) (bottom - klondikeHeight * 0.35f);
152 bottom = top + klondikeHeight;
153
154 left = centerX - mKlondikeText.getMeasuredWidth() / 2;
155 mKlondikeText.layout(left, top, left + mKlondikeText.getMeasuredWidth(), bottom);
Daniel Sandler69bdee72012-10-23 16:45:50 -0400156 }
Daniel Sandleracb60fb2012-10-25 10:46:37 -0400157
Selim Cinek63804822014-09-10 16:39:01 +0200158 @Override
159 public boolean hasOverlappingRendering() {
160 return false;
161 }
162
Daniel Sandleracb60fb2012-10-25 10:46:37 -0400163 // Cause a VIRTUAL_KEY vibration
164 public void doHapticKeyClick() {
165 if (mEnableHaptics) {
166 performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY,
167 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING
168 | HapticFeedbackConstants.FLAG_IGNORE_GLOBAL_SETTING);
169 }
170 }
Daniel Sandlerd5692742012-10-24 00:21:32 -0400171}