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