1<?xml version="1.0" encoding="utf-8"?>
2
3<!-- Copyright (C) 2023 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<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
19    android:fitsSystemWindows="true"
20    android:layout_width="match_parent"
21    android:layout_height="match_parent"
22    android:id="@+id/scrollView"
23    style="@style/RootLayoutPadding">
24
25    <LinearLayout
26            xmlns:android="http://schemas.android.com/apk/res/android"
27            android:layout_width="match_parent"
28            android:layout_height="wrap_content"
29            android:orientation="vertical"
30            style="@style/RootLayoutPadding">
31
32        <Button android:id="@+id/audioDescriptorRunTestBtn"
33                android:layout_width="wrap_content"
34                android:layout_height="wrap_content"
35                android:text="@string/audio_descriptor_run_test"/>
36
37        <CheckBox android:id="@+id/audioDescriptorHasHDMICheckBox"
38                  android:layout_width="wrap_content"
39                  android:layout_height="wrap_content"
40                  android:text="@string/audio_descriptor_has_hdmi_support"/>
41
42        <LinearLayout android:orientation="horizontal"
43                      android:layout_width="match_parent"
44                      android:layout_height="wrap_content">
45            <TextView
46                    android:text="@string/audio_descriptor_HDMI_support_label"
47                    android:layout_width="wrap_content"
48                    android:layout_height="wrap_content"
49                    android:textSize="18sp"/>
50
51            <TextView
52                    android:layout_width="wrap_content"
53                    android:layout_height="wrap_content"
54                    android:paddingLeft="10dp"
55                    android:paddingRight="10dp"
56                    android:id="@+id/audioDescriptorHDMISupportLbl"
57                    android:textSize="20sp"/>
58        </LinearLayout>
59
60        <TextView android:id="@+id/audioDescriptorTestStatusLbl"
61                  android:layout_width="match_parent"
62                  android:layout_height="wrap_content"
63                  android:textSize="20sp"/>
64
65        <include layout="@layout/pass_fail_buttons"/>
66    </LinearLayout>
67</ScrollView>
68