1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2022 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<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 18 style="@style/RootLayoutPadding" 19 android:layout_width="match_parent" 20 android:layout_height="match_parent"> 21 22 <LinearLayout 23 android:layout_width="match_parent" 24 android:layout_height="match_parent" 25 android:orientation="vertical"> 26 27 <TextView 28 android:layout_width="wrap_content" 29 android:layout_height="wrap_content" 30 android:textAppearance="?android:attr/textAppearanceLarge" 31 android:text="Test should be executed at least 2 minutes apart" 32 android:id="@+id/run_read_logs_title" 33 android:layout_margin="2dp" 34 android:textSize="14sp" 35 android:textStyle="bold" 36 /> 37 38 <Button android:id="@+id/run_read_logs_fg_allow_btn" 39 android:text="@string/read_logs_fg_allow_text" 40 android:layout_marginBottom="20dp" 41 android:layout_width="match_parent" 42 android:layout_height="wrap_content"/> 43 44 <Button android:id="@+id/run_read_logs_fg_deny_btn" 45 android:text="@string/read_logs_fg_deny_text" 46 android:layout_width="match_parent" 47 android:layout_height="wrap_content"/> 48 49 <include android:layout_width="match_parent" 50 android:layout_height="wrap_content" 51 android:layout_alignParentBottom="true" 52 layout="@layout/pass_fail_buttons" 53 /> 54 55 </LinearLayout> 56</ScrollView> 57