• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?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
18<com.android.setupwizardlib.GlifLayout
19    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"
23    android:layout="@layout/suw_glif_blank_template"
24    style="?attr/fingerprint_layout_theme">
25
26    <ScrollView
27        android:layout_width="match_parent"
28        android:layout_height="match_parent"
29        android:fillViewport="true">
30
31        <LinearLayout
32            style="@style/SuwContentFrame"
33            android:layout_width="match_parent"
34            android:layout_height="match_parent"
35            android:orientation="horizontal"
36            android:clipToPadding="false"
37            android:clipChildren="false">
38
39            <LinearLayout
40                android:layout_width="0dp"
41                android:layout_weight="1"
42                android:layout_height="match_parent"
43                android:clipChildren="false"
44                android:clipToPadding="false"
45                android:orientation="vertical">
46
47                <ImageView
48                    android:id="@+id/suw_layout_icon"
49                    style="@style/SuwGlifIcon"
50                    android:layout_width="wrap_content"
51                    android:layout_height="wrap_content"
52                    android:layout_gravity="?attr/suwGlifHeaderGravity"
53                    android:layout_marginLeft="0dp"
54                    android:layout_marginRight="0dp"
55                    android:contentDescription="@null"
56                    android:src="@drawable/ic_fingerprint_header"/>
57
58                <TextView
59                    android:id="@+id/suw_layout_title"
60                    style="@style/SuwGlifHeaderTitle"
61                    android:layout_width="match_parent"
62                    android:layout_height="wrap_content"
63                    android:layout_marginLeft="0dp"
64                    android:layout_marginRight="0dp"/>
65
66                <TextView
67                    android:id="@+id/message"
68                    style="@style/SuwDescription.Glif"
69                    android:layout_width="match_parent"
70                    android:layout_height="wrap_content"
71                    android:text="@string/security_settings_fingerprint_enroll_finish_message"/>
72
73                <Space
74                    android:layout_width="0dp"
75                    android:layout_height="0dp"
76                    android:layout_weight="1" />
77
78                <com.android.setupwizardlib.view.ButtonBarLayout
79                    style="@style/SuwGlifButtonBar.Stackable"
80                    android:layout_width="match_parent"
81                    android:layout_height="wrap_content"
82                    android:layout_marginTop="8dp"
83                    android:clipChildren="false"
84                    android:clipToPadding="false">
85
86                    <Button
87                        style="@style/SetupWizardButton.Negative"
88                        android:id="@+id/add_another_button"
89                        android:layout_width="wrap_content"
90                        android:layout_height="wrap_content"
91                        android:layout_marginEnd="8dp"
92                        android:text="@string/fingerprint_enroll_button_add" />
93
94                    <Space
95                        android:layout_width="0dp"
96                        android:layout_height="0dp"
97                        android:layout_weight="1" />
98
99                    <Button
100                        style="@style/SetupWizardButton.Positive"
101                        android:id="@+id/next_button"
102                        android:layout_width="wrap_content"
103                        android:layout_height="wrap_content"
104                        android:text="@string/security_settings_fingerprint_enroll_done" />
105
106                </com.android.setupwizardlib.view.ButtonBarLayout>
107
108            </LinearLayout>
109
110            <com.android.setupwizardlib.view.FillContentLayout
111                android:layout_width="0dp"
112                android:layout_weight="1"
113                android:layout_height="match_parent">
114
115                <ImageView
116                    android:id="@+id/fingerprint_in_app_indicator"
117                    style="@style/SuwContentIllustration"
118                    android:layout_width="match_parent"
119                    android:layout_height="match_parent"
120                    android:contentDescription="@android:string/fingerprint_icon_content_description"
121                    android:src="@drawable/fingerprint_enroll_finish" />
122
123            </com.android.setupwizardlib.view.FillContentLayout>
124
125        </LinearLayout>
126    </ScrollView>
127</com.android.setupwizardlib.GlifLayout>
128