blob: 611f520b4ac8f05035ff76b62c3b84a7370fc87f [file] [log] [blame]
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001/*
2 * Copyright (C) 2008 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
17package com.android.settings;
18
Amith Yamasani11cd8c52009-08-28 15:36:52 -070019import android.app.Dialog;
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080020import android.content.Context;
Gilles Debunne32073592012-05-16 16:46:12 +020021import android.text.InputType;
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080022import android.util.AttributeSet;
23import android.view.View;
24import android.widget.EditText;
25
tmfang27c84de2018-06-28 11:39:05 +080026import com.android.settingslib.CustomEditTextPreferenceCompat;
Juan Lang44828122017-05-10 17:26:02 -070027
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080028/**
29 * TODO: Add a soft dialpad for PIN entry.
30 */
tmfang27c84de2018-06-28 11:39:05 +080031class EditPinPreference extends CustomEditTextPreferenceCompat {
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080032
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080033 interface OnPinEnteredListener {
34 void onPinEntered(EditPinPreference preference, boolean positiveResult);
35 }
tmfang27c84de2018-06-28 11:39:05 +080036
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080037 private OnPinEnteredListener mPinListener;
tmfang27c84de2018-06-28 11:39:05 +080038
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080039 public EditPinPreference(Context context, AttributeSet attrs) {
40 super(context, attrs);
41 }
42
43 public EditPinPreference(Context context, AttributeSet attrs, int defStyle) {
44 super(context, attrs, defStyle);
45 }
tmfang27c84de2018-06-28 11:39:05 +080046
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080047 public void setOnPinEnteredListener(OnPinEnteredListener listener) {
48 mPinListener = listener;
49 }
Amith Yamasani11cd8c52009-08-28 15:36:52 -070050
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080051 @Override
52 protected void onBindDialogView(View view) {
53 super.onBindDialogView(view);
Amith Yamasani11cd8c52009-08-28 15:36:52 -070054
Jason Monk5b397102016-03-30 11:41:45 -040055 final EditText editText = (EditText) view.findViewById(android.R.id.edit);
Amith Yamasani11cd8c52009-08-28 15:36:52 -070056
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080057 if (editText != null) {
Gilles Debunne32073592012-05-16 16:46:12 +020058 editText.setInputType(InputType.TYPE_CLASS_NUMBER |
Jason Monk39b46742015-09-10 15:52:51 -040059 InputType.TYPE_NUMBER_VARIATION_PASSWORD);
Doris Ling807ee342018-04-17 16:24:19 -070060 editText.setTextAlignment(View.TEXT_ALIGNMENT_VIEW_START);
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080061 }
62 }
63
64 public boolean isDialogOpen() {
Amith Yamasani11cd8c52009-08-28 15:36:52 -070065 Dialog dialog = getDialog();
66 return dialog != null && dialog.isShowing();
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080067 }
Amith Yamasani11cd8c52009-08-28 15:36:52 -070068
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080069 @Override
70 protected void onDialogClosed(boolean positiveResult) {
71 super.onDialogClosed(positiveResult);
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080072 if (mPinListener != null) {
73 mPinListener.onPinEntered(this, positiveResult);
74 }
75 }
Amith Yamasani11cd8c52009-08-28 15:36:52 -070076
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080077 public void showPinDialog() {
Amith Yamasani11cd8c52009-08-28 15:36:52 -070078 Dialog dialog = getDialog();
79 if (dialog == null || !dialog.isShowing()) {
Jason Monk39b46742015-09-10 15:52:51 -040080 onClick();
Amith Yamasani11cd8c52009-08-28 15:36:52 -070081 }
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080082 }
83}