1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2021 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 17<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 18 android:fitsSystemWindows="true" 19 android:layout_width="match_parent" 20 android:layout_height="match_parent" 21 style="@style/RootLayoutPadding"> 22 <LinearLayout 23 android:layout_width="match_parent" 24 android:layout_height="match_parent" 25 android:orientation="vertical"> 26 <TextView 27 android:layout_width="match_parent" 28 android:layout_height="wrap_content" 29 android:text="@string/security_mode_feature_verifier_instructions"/> 30 31 <LinearLayout 32 android:layout_width="wrap_content" 33 android:layout_height="wrap_content" 34 android:layout_marginTop="@dimen/js_padding" 35 android:layout_marginBottom="@dimen/js_padding"> 36 <ImageView 37 android:id="@+id/handheld_or_tablet_image" 38 android:layout_width="wrap_content" 39 android:layout_height="wrap_content" 40 android:src="@drawable/fs_indeterminate" 41 android:layout_marginRight="@dimen/js_padding"/> 42 <TextView 43 android:id="@+id/handheld_or_tablet_text" 44 android:layout_width="wrap_content" 45 android:layout_height="wrap_content" 46 android:text="@string/handheld_or_tablet_text_before_test" 47 android:textSize="16dp"/> 48 </LinearLayout> 49 50 <LinearLayout 51 android:layout_width="wrap_content" 52 android:layout_height="wrap_content" 53 android:layout_marginTop="@dimen/js_padding" 54 android:layout_marginBottom="@dimen/js_padding"> 55 <Button 56 android:id="@+id/handheld_or_tablet_yes" 57 android:layout_width="wrap_content" 58 android:layout_height="wrap_content" 59 android:text="@string/handheld_or_tablet_yes"/> 60 <Button 61 android:id="@+id/handheld_or_tablet_not_applicable" 62 android:layout_width="wrap_content" 63 android:layout_height="wrap_content" 64 android:text="@string/handheld_or_tablet_not_applicable" 65 /> 66 </LinearLayout> 67 68 69 <include layout="@layout/pass_fail_buttons" /> 70 </LinearLayout> 71</ScrollView> 72