• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2019 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.google.android.setupdesign.GlifLayout
19    xmlns:android="http://schemas.android.com/apk/res/android"
20    xmlns:app="http://schemas.android.com/apk/res-auto"
21    xmlns:FaceEnrollAccessibilitySwitch="http://schemas.android.com/apk/res/com.android.car.developeroptions"
22    style="?attr/face_layout_theme"
23    android:id="@+id/setup_wizard_layout"
24    android:layout_width="match_parent"
25    android:layout_height="match_parent">
26
27    <LinearLayout
28        style="@style/SudContentFrame"
29        android:layout_width="match_parent"
30        android:layout_height="match_parent"
31        android:clipChildren="false"
32        android:clipToPadding="false"
33        android:orientation="vertical">
34
35        <com.google.android.setupdesign.view.RichTextView
36            android:id="@+id/description_text"
37            style="@style/SudDescription.Glif"
38            android:layout_width="match_parent"
39            android:layout_height="wrap_content"
40            android:text="@string/security_settings_face_enroll_introduction_message" />
41
42        <com.google.android.setupdesign.view.RichTextView
43            android:id="@+id/error_text"
44            style="@style/SudDescription.Glif"
45            android:layout_width="match_parent"
46            android:layout_height="wrap_content" />
47
48        <Space
49            android:layout_width="0dp"
50            android:layout_height="0dp"
51            android:layout_weight="1"/>
52
53        <FrameLayout
54            android:layout_width="match_parent"
55            android:layout_height="wrap_content">
56
57            <com.google.android.setupdesign.view.IllustrationVideoView
58                android:id="@+id/illustration_normal"
59                style="@style/SudContentIllustration"
60                android:layout_width="240dp"
61                android:layout_height="240dp"
62                app:sudVideo="@raw/face_enroll_introduction_animation" />
63
64            <ImageView
65                android:id="@+id/illustration_accessibility"
66                android:layout_width="wrap_content"
67                android:layout_height="wrap_content"
68                android:layout_gravity="center"
69                android:visibility="invisible"
70                android:background="@drawable/face_enroll_introduction" />
71
72        </FrameLayout>
73
74        <Space
75            android:layout_width="0dp"
76            android:layout_height="0dp"
77            android:layout_weight="2"/>
78
79        <!-- Contains the buttons and extra information text at the bottom -->
80        <LinearLayout
81            android:layout_width="match_parent"
82            android:layout_height="wrap_content"
83            android:orientation="vertical"
84            android:layout_gravity="center_horizontal|bottom">
85
86            <FrameLayout
87                android:layout_width="match_parent"
88                android:layout_height="wrap_content">
89                <Button
90                    android:id="@+id/accessibility_button"
91                    style="@style/SudGlifButton.Secondary"
92                    android:layout_gravity="center"
93                    android:layout_width="wrap_content"
94                    android:layout_height="wrap_content"
95                    android:text="@string/security_settings_face_enroll_introduction_accessibility" />
96
97                <com.android.car.developeroptions.biometrics.face.FaceEnrollAccessibilityToggle
98                    android:id="@+id/toggle_diversity"
99                    android:layout_width="match_parent"
100                    android:layout_height="wrap_content"
101                    android:visibility="invisible"
102                    FaceEnrollAccessibilitySwitch:messageText="@string/security_settings_face_enroll_introduction_accessibility_diversity"/>
103
104            </FrameLayout>
105
106            <LinearLayout
107                android:id="@+id/footer_layout"
108                android:layout_width="match_parent"
109                android:layout_height="wrap_content"
110                android:orientation="horizontal"
111                android:paddingStart="16dp"
112                android:paddingEnd="16dp">
113
114                <ImageView
115                    android:layout_width="wrap_content"
116                    android:layout_height="wrap_content"
117                    android:background="@drawable/ic_face_enroll_introduction_detail">
118                </ImageView>
119                <Space
120                    android:layout_width="8dp"
121                    android:layout_height="wrap_content" />
122                <TextView
123                    android:layout_width="match_parent"
124                    android:layout_height="wrap_content"
125                    android:text="@string/security_settings_face_enroll_introduction_footer_message"/>
126            </LinearLayout>
127
128        </LinearLayout>
129
130    </LinearLayout>
131
132</com.google.android.setupdesign.GlifLayout>
133