• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout
3        xmlns:android="http://schemas.android.com/apk/res/android"
4        android:layout_width="match_parent"
5        android:layout_height="wrap_content"
6        android:orientation="vertical"
7        style="@style/RootLayoutPadding">
8
9    <CheckBox android:id="@+id/audioDescriptorHasHDMICheckBox"
10              android:layout_width="wrap_content"
11              android:layout_height="wrap_content"
12              android:text="@string/audio_descriptor_has_hdmi_support"/>
13
14    <LinearLayout android:orientation="horizontal"
15                  android:layout_width="match_parent"
16                  android:layout_height="wrap_content">
17        <TextView
18                android:text="@string/audio_descriptor_HDMI_support_label"
19                android:layout_width="wrap_content"
20                android:layout_height="wrap_content"
21                android:textSize="18sp"/>
22
23        <TextView
24                android:layout_width="wrap_content"
25                android:layout_height="wrap_content"
26                android:paddingLeft="10dp"
27                android:paddingRight="10dp"
28                android:id="@+id/audioDescriptorHDMISupportLbl"
29                android:textSize="20sp"/>
30    </LinearLayout>
31
32    <TextView android:id="@+id/audioDescriptorTestStatusLbl"
33              android:layout_width="match_parent"
34              android:layout_height="wrap_content"
35              android:textSize="20sp"/>
36
37    <include layout="@layout/pass_fail_buttons"/>
38</LinearLayout>