74 lines
3.1 KiB
XML
74 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
**
|
|
** Copyright 2012, 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.
|
|
*/
|
|
-->
|
|
|
|
<!-- This is the screen that shows the 9 circle unlock widget and instructs
|
|
the user how to unlock their device, or make an emergency call. This
|
|
is the portrait layout. -->
|
|
<com.android.keyguard.KeyguardPatternView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:androidprv="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/keyguard_pattern_view"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
androidprv:layout_maxWidth="@dimen/biometric_auth_pattern_view_max_size"
|
|
android:layout_gravity="center_horizontal|bottom"
|
|
android:clipChildren="false"
|
|
android:clipToPadding="false">
|
|
<include layout="@layout/keyguard_bouncer_message_area"/>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/pattern_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_weight="1"
|
|
android:layoutDirection="ltr">
|
|
<androidx.constraintlayout.widget.Guideline
|
|
android:id="@+id/pattern_top_guideline"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
androidprv:layout_constraintGuide_percent="0"
|
|
android:orientation="horizontal" />
|
|
|
|
<com.android.internal.widget.LockPatternView
|
|
android:id="@+id/lockPatternView"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
androidprv:layout_constraintTop_toBottomOf="@id/pattern_top_guideline"
|
|
androidprv:layout_constraintBottom_toBottomOf="parent"
|
|
androidprv:layout_constraintLeft_toLeftOf="parent"
|
|
androidprv:layout_constraintRight_toRightOf="parent"
|
|
androidprv:layout_constraintDimensionRatio="1.0"
|
|
androidprv:layout_constraintVertical_bias="1.0"
|
|
/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<include layout="@layout/keyguard_eca"
|
|
android:id="@+id/keyguard_selector_fade_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:layout_marginTop="@dimen/keyguard_eca_top_margin"
|
|
android:layout_marginBottom="@dimen/keyguard_eca_bottom_margin"
|
|
android:gravity="center_horizontal" />
|
|
|
|
</com.android.keyguard.KeyguardPatternView>
|