blob: b14bc7de06c4fcb177f5f284c1dffa54b5ffedbe [file] [log] [blame]
Kevin Chynff168dc2019-09-16 16:04:38 -07001<!--
2 ~ Copyright (C) 2019 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
Kevin Chyn8110ebb2019-10-02 11:16:31 -070017<com.android.systemui.biometrics.AuthCredentialPasswordView
Kevin Chynff168dc2019-09-16 16:04:38 -070018 xmlns:android="http://schemas.android.com/apk/res/android"
Kevin Chynff168dc2019-09-16 16:04:38 -070019 android:layout_width="match_parent"
20 android:layout_height="match_parent"
21 android:orientation="vertical"
22 android:gravity="center_horizontal"
23 android:elevation="@dimen/biometric_dialog_elevation">
24
25 <Space
26 android:layout_width="0dp"
27 android:layout_height="0dp"
28 android:layout_weight="1"/>
29
30 <ImageView
Alex Johnston5179ac62020-01-07 14:23:26 +000031 android:id="@+id/icon"
32 android:layout_width="wrap_content"
33 android:layout_height="wrap_content"/>
Kevin Chynff168dc2019-09-16 16:04:38 -070034
35 <TextView
36 android:id="@+id/title"
Kevin Chynff168dc2019-09-16 16:04:38 -070037 android:layout_width="match_parent"
38 android:layout_height="wrap_content"
Alex Johnston5179ac62020-01-07 14:23:26 +000039 style="@style/TextAppearance.AuthCredential.Title"/>
Kevin Chynff168dc2019-09-16 16:04:38 -070040
41 <TextView
42 android:id="@+id/subtitle"
43 android:layout_width="match_parent"
44 android:layout_height="wrap_content"
45 android:layout_marginHorizontal="24dp"
46 android:layout_marginTop="8dp"
47 android:textSize="16sp"
48 android:gravity="center"
49 android:textColor="?android:attr/textColorPrimary"/>
50
51 <TextView
52 android:id="@+id/description"
53 android:layout_width="match_parent"
54 android:layout_height="wrap_content"
Alex Johnston5179ac62020-01-07 14:23:26 +000055 style="@style/TextAppearance.AuthCredential.Description"/>
Kevin Chynff168dc2019-09-16 16:04:38 -070056
57 <Space
58 android:layout_width="0dp"
59 android:layout_height="0dp"
Kevin Chyn8110ebb2019-10-02 11:16:31 -070060 android:layout_weight="1"/>
Kevin Chynff168dc2019-09-16 16:04:38 -070061
62 <TextView
63 android:id="@+id/error"
64 android:layout_width="match_parent"
65 android:layout_height="wrap_content"
66 android:layout_marginHorizontal="24dp"
67 android:textSize="16sp"
68 android:gravity="center"
69 android:textColor="?android:attr/colorError"/>
70
Kevin Chyn8110ebb2019-10-02 11:16:31 -070071 <EditText
72 android:id="@+id/lockPassword"
Kevin Chyn8110ebb2019-10-02 11:16:31 -070073 android:layout_width="208dp"
Kevin Chynff168dc2019-09-16 16:04:38 -070074 android:layout_height="wrap_content"
Alex Johnston5179ac62020-01-07 14:23:26 +000075 android:layout_gravity="center_horizontal"
Curtis Belmontea2d54302020-02-05 14:06:47 -080076 android:minHeight="48dp"
Kevin Chyn8110ebb2019-10-02 11:16:31 -070077 android:gravity="center"
78 android:inputType="textPassword"
79 android:maxLength="500"
Alex Johnston5179ac62020-01-07 14:23:26 +000080 android:imeOptions="actionNext|flagNoFullscreen|flagForceAscii"
81 style="@style/TextAppearance.AuthCredential.PasswordEntry"/>
Kevin Chynff168dc2019-09-16 16:04:38 -070082
83 <Space
84 android:layout_width="0dp"
85 android:layout_height="0dp"
Kevin Chyn8110ebb2019-10-02 11:16:31 -070086 android:layout_weight="5"/>
Kevin Chynff168dc2019-09-16 16:04:38 -070087
Kevin Chyn8110ebb2019-10-02 11:16:31 -070088</com.android.systemui.biometrics.AuthCredentialPasswordView>