86 lines
3.2 KiB
XML
86 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (C) 2023 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.
|
|
-->
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/suw_lift"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/sud_layout_icon"
|
|
style="@style/SudGlifIcon"
|
|
android:layout_marginStart="48dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginTop="68dp"
|
|
android:scaleType="fitStart"
|
|
android:src="@drawable/ic_lock" />
|
|
|
|
<TextView
|
|
style="@style/SudGlifHeaderTitle"
|
|
android:id="@+id/suc_layout_title"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="138dp"
|
|
android:layout_marginStart="40dp"
|
|
android:layout_marginEnd="24dp"/>
|
|
|
|
<TextView
|
|
style="@style/SudDescription.Glif"
|
|
android:id="@+id/sud_layout_subtitle"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="206dp"
|
|
android:layout_marginStart="40dp"
|
|
android:layout_marginEnd="24dp"/>
|
|
|
|
<com.airbnb.lottie.LottieAnimationView
|
|
android:id="@+id/illustration_lottie"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="200dp"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_marginTop="206dp"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginEnd="17dp"
|
|
android:scaleType="centerInside"
|
|
android:visibility="gone"
|
|
app:lottie_autoPlay="true"
|
|
app:lottie_loop="true"
|
|
app:lottie_speed=".85" />
|
|
|
|
<include layout="@layout/udfps_enroll_enrolling_v2_udfps_view"/>
|
|
|
|
<Button
|
|
style="@style/SudGlifButton.Secondary"
|
|
android:id="@+id/skip_btn"
|
|
android:text="@string/security_settings_fingerprint_enroll_enrolling_skip"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_marginBottom="26dp"
|
|
android:layout_marginStart="66dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</RelativeLayout> |