blob: aaebd69e80abe1e45fe24e945e606a358b154dc9 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2018 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!--
NOTE:
This layout is mirrored in suw_choose_lock_password.xml with just the styling differences
between setup wizard and settings applied. Any changes to ids/components outside of styling
needs to be duplicated in that file or breakages will occur.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginHorizontal="@*android:dimen/action_bar_margin"
android:orientation="horizontal">
<FrameLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="@integer/content_weight">
<EditText
android:id="@+id/password_entry"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:focusableInTouchMode="true"
android:hint="@string/security_lock_password"
android:imeOptions="actionDone|flagNoExtractUi"
android:inputType="textPassword"
android:maxLines="1"
android:paddingHorizontal="@dimen/pin_password_entry_padding_horizontal"
android:textAppearance="?android:attr/textAppearanceMedium"/>
</FrameLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="@integer/illustration_weight"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:layout_width="@dimen/icon_size"
android:layout_height="@dimen/icon_size"
android:src="@drawable/ic_lock"/>
<TextView
android:id="@+id/title_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/choose_title_text_margin_bottom"
android:gravity="center"
android:text="@string/lockscreen_choose_your_password"
android:textAppearance="?android:attr/textAppearanceLarge"/>
<TextView
android:id="@+id/hint_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/choose_lock_password_hints"
android:textAppearance="?android:attr/textAppearanceMedium"/>
</LinearLayout>
</LinearLayout>