• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 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<com.google.android.setupdesign.GlifLayout
17    xmlns:android="http://schemas.android.com/apk/res/android"
18    android:id="@+id/setup_wizard_layout"
19    android:layout_width="match_parent"
20    android:layout_height="match_parent"
21    android:icon="@drawable/ic_enterprise">
22
23    <com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient
24        android:id="@+id/topLayout"
25        android:orientation="vertical"
26        android:layout_width="match_parent"
27        android:layout_height="match_parent">
28
29        <LinearLayout
30            android:layout_width="match_parent"
31            android:layout_height="wrap_content"
32            android:orientation="vertical"
33            android:paddingBottom="24dp">
34
35            <Button
36                android:id="@+id/cancelButton"
37                style="@style/SudGlifButton.Secondary"
38                android:layout_width="wrap_content"
39                android:layout_height="wrap_content"
40                android:layout_marginStart="?attr/sudMarginStart"
41                android:layout_marginEnd="?attr/sudMarginEnd"
42                android:layout_marginBottom="80dp"
43                android:text="@string/cancel" />
44
45            <Button
46                android:id="@+id/forgotButton"
47                style="@style/SudGlifButton.Secondary"
48                android:layout_width="wrap_content"
49                android:layout_height="wrap_content"
50                android:layout_marginStart="?attr/sudMarginStart"
51                android:layout_marginEnd="?attr/sudMarginEnd"
52                android:layout_gravity="center"
53                android:visibility="gone" />
54
55        </LinearLayout>
56
57        <LinearLayout
58            style="@style/SudContentFrame"
59            android:layout_width="match_parent"
60            android:layout_height="wrap_content"
61            android:orientation="vertical"
62            android:gravity="center"
63            android:paddingLeft="0dp"
64            android:paddingRight="0dp">
65
66            <com.google.android.setupdesign.view.FillContentLayout
67                style="@style/LockPatternContainerStyle"
68                android:layout_width="wrap_content"
69                android:layout_height="0dp"
70                android:layout_weight="1">
71
72                <com.android.internal.widget.LockPatternView
73                    android:id="@+id/lockPattern"
74                    android:layout_width="match_parent"
75                    android:layout_height="match_parent"
76                    android:layout_gravity="center" />
77
78            </com.google.android.setupdesign.view.FillContentLayout>
79
80            <TextView
81                style="@style/TextAppearance.ErrorText"
82                android:accessibilityLiveRegion="polite"
83                android:id="@+id/errorText"
84                android:layout_width="wrap_content"
85                android:layout_height="wrap_content"
86                android:layout_gravity="center_horizontal"
87                android:paddingStart="?attr/sudMarginStart"
88                android:paddingEnd="?attr/sudMarginEnd"
89                android:layout_marginTop="12dp"
90                android:gravity="center_vertical"/>
91
92        </LinearLayout>
93
94    </com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient>
95</com.google.android.setupdesign.GlifLayout>
96