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="1"/> 65 66 <EditText 67 android:id="@+id/password_entry" 68 android:layout_width="208dp" 69 android:layout_height="wrap_content" 70 android:layout_gravity="center_horizontal" 71 android:layout_marginTop="-40dp" 72 android:inputType="textPassword" 73 android:imeOptions="actionNext|flagNoFullscreen" 74 android:gravity="center" 75 android:textSize="16sp" 76 style="@style/TextAppearance.PasswordEntry"/> 77 78 <TextView 79 style="@style/TextAppearance.ConfirmDeviceCredentialsErrorText" 80 android:accessibilityLiveRegion="polite" 81 android:id="@+id/errorText" 82 android:layout_width="wrap_content" 83 android:layout_height="0dp" 84 android:layout_weight="1" 85 android:layout_gravity="center_horizontal" 86 android:layout_marginStart="12dp" 87 android:layout_marginEnd="12dp" 88 android:gravity="center_vertical"/> 89 90 <ImageView 91 android:id="@+id/fingerprintIcon" 92 android:layout_gravity="center_horizontal" 93 android:layout_width="wrap_content" 94 android:layout_height="wrap_content" 95 android:layout_alignParentBottom="true" 96 android:layout_marginBottom="24dp" 97 android:contentDescription="@string/confirm_fingerprint_icon_content_description" 98 android:visibility="gone"/> 99 100 </com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient> 101 </FrameLayout> 102