blob: e1a9707682181002fba487d91ab8a16b704959e7 [file] [log] [blame]
Jorim Jaggi5ad75f02015-04-22 16:17:23 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 ~ Copyright (C) 2015 The Android Open Source Project
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License
16 -->
17
Pasty Changc1f86002018-12-11 02:22:55 +000018<com.google.android.setupdesign.GlifLayout
Jorim Jaggi5ad75f02015-04-22 16:17:23 -070019 xmlns:android="http://schemas.android.com/apk/res/android"
20 android:id="@+id/setup_wizard_layout"
21 android:layout_width="match_parent"
22 android:layout_height="match_parent"
pastychang1b166682018-12-18 10:53:34 +080023 style="?attr/fingerprint_layout_theme">
Jorim Jaggi5ad75f02015-04-22 16:17:23 -070024
25 <LinearLayout
pastychang79614822019-01-03 10:12:54 +080026 style="@style/SudContentFrame"
Jorim Jaggi5ad75f02015-04-22 16:17:23 -070027 android:layout_width="match_parent"
28 android:layout_height="match_parent"
29 android:orientation="vertical"
30 android:clipToPadding="false"
31 android:clipChildren="false">
32
33 <!-- Make both texts included for layout, so the lower part doesn't jump around when we
34 switch the text -->
35 <FrameLayout
36 android:layout_width="match_parent"
Maurice Lama57730a2017-06-16 21:34:34 -070037 android:layout_height="wrap_content">
Jorim Jaggi5ad75f02015-04-22 16:17:23 -070038
39 <TextView
pastychang79614822019-01-03 10:12:54 +080040 style="@style/SudDescription.Glif"
pastychangfa68ec42019-04-12 16:22:17 +080041 android:id="@+id/sud_layout_description"
Jorim Jaggi5ad75f02015-04-22 16:17:23 -070042 android:layout_width="match_parent"
43 android:layout_height="wrap_content"
Maurice Lama57730a2017-06-16 21:34:34 -070044 android:minLines="3"
Jorim Jaggi5ad75f02015-04-22 16:17:23 -070045 android:text="@string/security_settings_fingerprint_enroll_start_message"/>
46
47 <TextView
pastychang79614822019-01-03 10:12:54 +080048 style="@style/SudDescription.Glif"
Jorim Jaggi5ad75f02015-04-22 16:17:23 -070049 android:id="@+id/repeat_message"
50 android:layout_width="match_parent"
51 android:layout_height="wrap_content"
Maurice Lama57730a2017-06-16 21:34:34 -070052 android:minLines="3"
Jorim Jaggi5ad75f02015-04-22 16:17:23 -070053 android:text="@string/security_settings_fingerprint_enroll_repeat_message"
54 android:visibility="invisible"/>
55
56 </FrameLayout>
57
Ajay Nadathur715713d2017-07-06 17:03:11 -070058 <LinearLayout
Maurice Lama57730a2017-06-16 21:34:34 -070059 android:layout_width="match_parent"
Maurice Lam67df1262016-10-19 15:16:36 -070060 android:layout_height="0dp"
Ajay Nadathur715713d2017-07-06 17:03:11 -070061 android:layout_weight="1"
62 android:gravity="center"
63 android:orientation="vertical">
Jorim Jaggi5ad75f02015-04-22 16:17:23 -070064
Pasty Changc1f86002018-12-11 02:22:55 +000065 <com.google.android.setupdesign.view.FillContentLayout
Maurice Lama57730a2017-06-16 21:34:34 -070066 android:layout_width="@dimen/fingerprint_progress_bar_max_size"
67 android:layout_height="@dimen/fingerprint_progress_bar_max_size"
Ajay Nadathurc1327362017-07-19 19:09:33 -070068 android:paddingTop="0dp"
69 android:paddingBottom="0dp"
70 android:layout_marginVertical="24dp">
71
72 <include layout="@layout/fingerprint_enroll_enrolling_content"
73 android:layout_width="match_parent"
74 android:layout_height="match_parent"
75 android:layout_gravity="center" />
Pasty Changc1f86002018-12-11 02:22:55 +000076 </com.google.android.setupdesign.view.FillContentLayout>
Maurice Lama57730a2017-06-16 21:34:34 -070077
78 <TextView
Raff Tsaif6d42a92018-12-26 12:54:05 +080079 style="@style/TextAppearance.ErrorText"
Maurice Lama57730a2017-06-16 21:34:34 -070080 android:id="@+id/error_text"
81 android:layout_width="wrap_content"
82 android:layout_height="wrap_content"
Maurice Lama57730a2017-06-16 21:34:34 -070083 android:layout_gravity="center_horizontal|bottom"
84 android:accessibilityLiveRegion="polite"
85 android:gravity="center"
86 android:visibility="invisible"/>
87
Ajay Nadathur715713d2017-07-06 17:03:11 -070088 </LinearLayout>
Jorim Jaggi5ad75f02015-04-22 16:17:23 -070089
90 </LinearLayout>
91
Pasty Changc1f86002018-12-11 02:22:55 +000092</com.google.android.setupdesign.GlifLayout>