blob: 170b32b6c669778116fd760f7c890d2ef35c40f4 [file] [log] [blame]
Matt Pietalb7da66c2020-03-06 10:49:31 -05001<!--
2 ~ Copyright (C) 2020 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
17<LinearLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
21 android:orientation="vertical"
22 android:paddingLeft="?android:attr/dialogPreferredPadding"
23 android:paddingRight="?android:attr/dialogPreferredPadding">
24 <EditText
25 android:id="@+id/controls_pin_input"
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content"
Matt Pietal628061f2020-04-13 09:22:11 -040028 android:minHeight="48dp"
Matt Pietalc8796852020-05-13 15:13:30 -040029 android:longClickable="false"
Matt Pietalb7da66c2020-03-06 10:49:31 -050030 android:inputType="numberPassword" />
31 <CheckBox
32 android:id="@+id/controls_pin_use_alpha"
33 android:layout_width="match_parent"
34 android:layout_height="wrap_content"
35 android:layout_marginTop="5dp"
Matt Pietal628061f2020-04-13 09:22:11 -040036 android:minHeight="48dp"
Matt Pietalb7da66c2020-03-06 10:49:31 -050037 android:text="@string/controls_pin_use_alphanumeric" />
38</LinearLayout>