1<?xml version="1.0" encoding="utf-8"?> 2<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:id="@+id/scrollView" 6 style="@style/RootLayoutPadding"> 7 8<LinearLayout android:orientation="vertical" 9 android:layout_width="match_parent" 10 android:layout_height="wrap_content"> 11 12 <LinearLayout android:orientation="horizontal" 13 android:layout_width="match_parent" 14 android:layout_height="wrap_content"> 15 <TextView 16 android:text="@string/proAudioHasLLAlbl" 17 android:layout_width="wrap_content" 18 android:layout_height="wrap_content" 19 android:textSize="18sp"/> 20 21 <TextView 22 android:layout_width="wrap_content" 23 android:layout_height="wrap_content" 24 android:paddingLeft="10dp" 25 android:paddingRight="10dp" 26 android:id="@+id/proAudioHasLLALbl" 27 android:textSize="18sp"/> 28 </LinearLayout> 29 30 <LinearLayout android:orientation="horizontal" 31 android:layout_width="match_parent" 32 android:layout_height="wrap_content"> 33 <TextView 34 android:text="@string/proAudioMidiHasMIDILbl" 35 android:layout_width="wrap_content" 36 android:layout_height="wrap_content" 37 android:textSize="18sp"/> 38 39 <TextView 40 android:layout_width="wrap_content" 41 android:layout_height="wrap_content" 42 android:paddingLeft="10dp" 43 android:paddingRight="10dp" 44 android:id="@+id/proAudioHasMIDILbl" 45 android:textSize="18sp"/> 46 </LinearLayout> 47 48 <LinearLayout android:orientation="horizontal" 49 android:layout_width="match_parent" 50 android:layout_height="wrap_content"> 51 <TextView 52 android:text="@string/proAudioMidiHasUSBHostLbl" 53 android:layout_width="wrap_content" 54 android:layout_height="wrap_content" 55 android:textSize="18sp"/> 56 57 <TextView 58 android:layout_width="wrap_content" 59 android:layout_height="wrap_content" 60 android:paddingLeft="10dp" 61 android:paddingRight="10dp" 62 android:id="@+id/proAudioMidiHasUSBHostLbl" 63 android:textSize="18sp"/> 64 </LinearLayout> 65 66 <LinearLayout android:orientation="horizontal" 67 android:layout_width="match_parent" 68 android:layout_height="wrap_content"> 69 <TextView 70 android:text="@string/proAudioMidiHasUSBPeripheralLbl" 71 android:layout_width="wrap_content" 72 android:layout_height="wrap_content" 73 android:textSize="18sp"/> 74 75 <TextView 76 android:layout_width="wrap_content" 77 android:layout_height="wrap_content" 78 android:paddingLeft="10dp" 79 android:paddingRight="10dp" 80 android:id="@+id/proAudioMidiHasUSBPeripheralLbl" 81 android:textSize="18sp"/> 82 </LinearLayout> 83 84 <CheckBox android:id="@+id/proAudioHasHDMICheckBox" 85 android:layout_width="wrap_content" 86 android:layout_height="wrap_content" 87 android:text="@string/proAudioHasHDMICheckBox" 88 android:onClick="onCheckboxClicked"/> 89 90 <LinearLayout android:orientation="horizontal" 91 android:layout_width="match_parent" 92 android:layout_height="wrap_content"> 93 <TextView 94 android:text="@string/proAudioHDMISupportLbl" 95 android:layout_width="wrap_content" 96 android:layout_height="wrap_content" 97 android:textSize="18sp"/> 98 99 <TextView 100 android:layout_width="wrap_content" 101 android:layout_height="wrap_content" 102 android:paddingLeft="10dp" 103 android:paddingRight="10dp" 104 android:id="@+id/proAudioHDMISupportLbl" 105 android:textSize="18sp"/> 106 </LinearLayout> 107 108 <TextView 109 android:text="@string/proAudioInputLbl" 110 android:layout_width="wrap_content" 111 android:layout_height="wrap_content" 112 android:textSize="18sp"/> 113 114 <TextView 115 android:layout_width="wrap_content" 116 android:layout_height="wrap_content" 117 android:paddingLeft="10dp" 118 android:paddingRight="10dp" 119 android:id="@+id/proAudioInputLbl" 120 android:textSize="18sp"/> 121 122 <TextView 123 android:text="@string/proAudioOutputLbl" 124 android:layout_width="wrap_content" 125 android:layout_height="wrap_content" 126 android:textSize="18sp"/> 127 128 <TextView 129 android:layout_width="wrap_content" 130 android:layout_height="wrap_content" 131 android:paddingLeft="10dp" 132 android:paddingRight="10dp" 133 android:id="@+id/proAudioOutputLbl" 134 android:textSize="18sp"/> 135 136 <Button 137 android:text="@string/audio_proaudio_roundtrip" 138 android:layout_width="match_parent" 139 android:layout_height="wrap_content" 140 android:id="@+id/proAudio_runRoundtripBtn"/> 141 142 <LinearLayout android:orientation="horizontal" 143 android:layout_width="match_parent" 144 android:layout_height="wrap_content"> 145 <TextView 146 android:text="@string/proAudioRoundTripLbl" 147 android:layout_width="wrap_content" 148 android:layout_height="wrap_content" 149 android:textSize="18sp"/> 150 151 <TextView 152 android:layout_width="wrap_content" 153 android:layout_height="wrap_content" 154 android:paddingLeft="10dp" 155 android:paddingRight="10dp" 156 android:id="@+id/proAudioRoundTripLbl" 157 android:textSize="18sp"/> 158 </LinearLayout> 159 160 <LinearLayout android:orientation="horizontal" 161 android:layout_width="match_parent" 162 android:layout_height="wrap_content"> 163 <TextView 164 android:text="@string/proAudioConfidenceLbl" 165 android:layout_width="wrap_content" 166 android:layout_height="wrap_content" 167 android:textSize="18sp"/> 168 169 <TextView 170 android:layout_width="wrap_content" 171 android:layout_height="wrap_content" 172 android:paddingLeft="10dp" 173 android:paddingRight="10dp" 174 android:id="@+id/proAudioConfidenceLbl" 175 android:textSize="18sp"/> 176 </LinearLayout> 177 178 <include layout="@layout/pass_fail_buttons"/> 179</LinearLayout> 180</ScrollView>