1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2015 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License 16 --> 17 18<com.google.android.setupdesign.GlifLayout 19 xmlns:android="http://schemas.android.com/apk/res/android" 20 android:id="@+id/setup_wizard_layout" 21 android:layout_width="match_parent" 22 android:layout_height="match_parent" 23 android:layout="@layout/sud_glif_blank_template" 24 style="?attr/fingerprint_layout_theme"> 25 26 <ScrollView 27 android:layout_width="match_parent" 28 android:layout_height="match_parent" 29 android:fillViewport="true"> 30 31 <LinearLayout 32 style="@style/SudContentFrame" 33 android:layout_width="match_parent" 34 android:layout_height="match_parent" 35 android:orientation="horizontal" 36 android:clipToPadding="false" 37 android:clipChildren="false"> 38 39 <LinearLayout 40 android:layout_width="0dp" 41 android:layout_weight="1" 42 android:layout_height="match_parent" 43 android:clipChildren="false" 44 android:clipToPadding="false" 45 android:orientation="vertical"> 46 47 <ImageView 48 android:id="@+id/sud_layout_icon" 49 style="@style/SudGlifIcon" 50 android:layout_width="wrap_content" 51 android:layout_height="wrap_content" 52 android:layout_gravity="?attr/sudGlifHeaderGravity" 53 android:layout_marginLeft="0dp" 54 android:layout_marginRight="0dp" 55 android:contentDescription="@null" 56 android:src="@drawable/ic_fingerprint_header"/> 57 58 <TextView 59 android:id="@+id/suc_layout_title" 60 style="@style/SudGlifHeaderTitle" 61 android:layout_width="match_parent" 62 android:layout_height="wrap_content" 63 android:layout_marginLeft="0dp" 64 android:layout_marginRight="0dp"/> 65 66 <TextView 67 android:id="@+id/sud_layout_description" 68 style="@style/SudDescription.Glif" 69 android:layout_width="match_parent" 70 android:layout_height="wrap_content" 71 android:text="@string/security_settings_fingerprint_enroll_finish_message"/> 72 73 </LinearLayout> 74 75 <com.google.android.setupdesign.view.FillContentLayout 76 android:layout_width="0dp" 77 android:layout_weight="1" 78 android:layout_height="match_parent"> 79 80 <ImageView 81 android:id="@+id/fingerprint_in_app_indicator" 82 style="@style/SudContentIllustration" 83 android:layout_width="match_parent" 84 android:layout_height="match_parent" 85 android:contentDescription="@android:string/fingerprint_icon_content_description" 86 android:src="@drawable/fingerprint_enroll_finish" /> 87 88 </com.google.android.setupdesign.view.FillContentLayout> 89 90 </LinearLayout> 91 </ScrollView> 92</com.google.android.setupdesign.GlifLayout> 93