• 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<FrameLayout
17    xmlns:android="http://schemas.android.com/apk/res/android"
18    android:layout_width="match_parent"
19    android:layout_height="match_parent" >
20
21    <include layout="@layout/confirm_lock_background_base" />
22
23    <com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient
24        xmlns:android="http://schemas.android.com/apk/res/android"
25        android:id="@+id/topLayout"
26        android:orientation="vertical"
27        android:layout_width="@dimen/confirm_credentials_layout_width"
28        android:layout_height="match_parent"
29        android:layout_gravity="top|center_horizontal"
30        android:paddingTop="@dimen/confirm_credentials_top_padding">
31
32        <TextView
33            style="@android:style/TextAppearance.Material.Headline"
34            android:id="@+id/headerText"
35            android:layout_marginStart="?attr/confirmDeviceCredentialsSideMargin"
36            android:layout_marginEnd="?attr/confirmDeviceCredentialsSideMargin"
37            android:layout_marginTop="?attr/confirmDeviceCredentialsTopMargin"
38            android:layout_width="wrap_content"
39            android:layout_height="wrap_content"
40            android:textColor="?android:attr/colorAccent"/>
41
42        <TextView
43            style="@android:style/TextAppearance.Material.Body1"
44            android:id="@+id/detailsText"
45            android:layout_marginStart="?attr/confirmDeviceCredentialsSideMargin"
46            android:layout_marginEnd="?attr/confirmDeviceCredentialsSideMargin"
47            android:layout_marginTop="12dp"
48            android:layout_width="wrap_content"
49            android:layout_height="wrap_content"
50            />
51
52        <Button
53            style="@android:style/Widget.Material.Button.Borderless"
54            android:id="@+id/cancelButton"
55            android:layout_width="wrap_content"
56            android:layout_height="wrap_content"
57            android:text="@string/cancel"
58            android:layout_marginStart="16dp"
59            android:layout_marginEnd="16dp"
60            android:layout_marginTop="16dp"/>
61
62        <View android:layout_width="match_parent"
63              android:layout_height="0dp"
64              android:layout_weight="0.5"/>
65
66        <com.android.internal.widget.LockPatternView
67            android:id="@+id/lockPattern"
68            android:layout_width="312dp"
69            android:layout_height="312dp"
70            android:layout_gravity="center_horizontal"
71            android:layout_marginTop="-46dp"
72            android:layout_marginBottom="-46dp"/>
73
74        <LinearLayout
75            android:layout_width="match_parent"
76            android:layout_height="0dp"
77            android:layout_weight="1"
78            android:orientation="vertical">
79
80            <TextView
81                style="@style/TextAppearance.ConfirmDeviceCredentialsErrorText"
82                android:accessibilityLiveRegion="polite"
83                android:id="@+id/errorText"
84                android:layout_width="wrap_content"
85                android:layout_height="0dp"
86                android:layout_weight="1"
87                android:layout_gravity="center_horizontal"
88                android:layout_marginTop="12dp"
89                android:layout_marginStart="12dp"
90                android:layout_marginEnd="12dp"
91                android:gravity="center_vertical"/>
92
93            <ImageView
94                android:id="@+id/fingerprintIcon"
95                android:layout_gravity="center_horizontal"
96                android:layout_width="wrap_content"
97                android:layout_height="wrap_content"
98                android:layout_alignParentBottom="true"
99                android:layout_marginBottom="24dp"
100                android:contentDescription="@string/confirm_fingerprint_icon_content_description"
101                android:visibility="gone"/>
102        </LinearLayout>
103
104    </com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient>
105</FrameLayout>
106