1<?xml version="1.0" encoding="utf-8"?>
2<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3    android:fitsSystemWindows="true"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent"
6    android:id="@+id/scrollView"
7    style="@style/RootLayoutPadding">
8
9<LinearLayout android:orientation="vertical"
10    android:layout_width="match_parent"
11    android:layout_height="wrap_content">
12
13    <!--  MIDI support -->
14    <TextView
15        android:text="@string/midiHasMIDILbl"
16        android:layout_width="wrap_content"
17        android:layout_height="wrap_content"/>
18
19    <TextView
20        android:layout_width="wrap_content"
21        android:layout_height="wrap_content"
22        android:paddingLeft="10dp"
23        android:paddingRight="10dp"
24        android:id="@+id/midiHasMIDILbl"/>
25
26    <!-- USB peripheral support -->
27    <include layout="@layout/uap_usb_confirm"/>
28
29    <Space
30        android:layout_width="match_parent"
31        android:layout_height="15dp"/>
32
33    <!--  USB MIDI test -->
34    <TextView
35        android:text="@string/midiUSBTestLbl"
36        android:layout_width="wrap_content"
37        android:layout_height="wrap_content"/>
38
39    <LinearLayout android:orientation="horizontal"
40        android:layout_width="match_parent"
41        android:layout_height="wrap_content">
42        <TextView
43            android:text="@string/usbMidiInputLbl"
44            android:layout_width="wrap_content"
45            android:layout_height="wrap_content"/>
46
47        <TextView
48            android:layout_width="wrap_content"
49            android:layout_height="wrap_content"
50            android:paddingLeft="10dp"
51            android:paddingRight="10dp"
52            android:id="@+id/midiUSBInputLbl"/>
53    </LinearLayout>
54
55    <LinearLayout android:orientation="horizontal"
56        android:layout_width="match_parent"
57        android:layout_height="wrap_content">
58        <TextView
59                android:text="@string/usbMidiOutputLbl"
60                android:layout_width="wrap_content"
61                android:layout_height="wrap_content"/>
62
63        <TextView
64            android:layout_width="wrap_content"
65            android:layout_height="wrap_content"
66            android:paddingLeft="10dp"
67            android:paddingRight="10dp"
68            android:id="@+id/midiUSBOutputLbl"/>
69    </LinearLayout>
70
71    <Button
72        android:text="@string/midiTestUSBInterfaceBtn"
73        android:layout_width="match_parent"
74        android:layout_height="wrap_content"
75        android:id="@+id/midiTestUSBInterfaceBtn"/>
76
77    <LinearLayout android:orientation="horizontal"
78        android:layout_width="match_parent"
79        android:layout_height="wrap_content">
80        <TextView
81            android:text="@string/midiStatusLbl"
82            android:layout_width="wrap_content"
83            android:layout_height="wrap_content"/>
84
85        <TextView
86            android:layout_width="wrap_content"
87            android:layout_height="wrap_content"
88            android:paddingLeft="10dp"
89            android:paddingRight="10dp"
90            android:id="@+id/midiUSBTestStatusLbl"
91            android:text="@string/midiNotRunLbl"/>
92    </LinearLayout>
93
94    <Space
95        android:layout_width="match_parent"
96        android:layout_height="15dp"/>
97
98    <!-- USB audio test -->
99
100    <TextView
101        android:text="@string/midiUSBAudioTestLbl"
102        android:layout_width="wrap_content"
103        android:layout_height="wrap_content"/>
104
105    <include layout="@layout/uap_profile_header"/>
106
107    <LinearLayout
108        android:orientation="vertical"
109        android:layout_width="match_parent"
110        android:layout_height="match_parent">
111
112         <Space
113            android:layout_width="match_parent"
114            android:layout_height="5dp"/>
115
116        <TextView
117            android:text="@string/uapPlayStopTestInstructions"
118            android:layout_width="match_parent"
119            android:layout_height="wrap_content"/>
120
121        <Space
122            android:layout_width="match_parent"
123            android:layout_height="5dp"/>
124
125        <Button
126            android:text="@string/audio_uap_play_playBtn"
127            android:layout_width="match_parent"
128            android:layout_height="wrap_content"
129            android:id="@+id/uap_playPlayBtn"/>
130        </LinearLayout>
131
132    <LinearLayout android:orientation="horizontal"
133        android:layout_width="match_parent"
134        android:layout_height="wrap_content">
135        <TextView
136            android:text="@string/audio_general_status"
137            android:layout_width="wrap_content"
138            android:layout_height="wrap_content"/>
139
140        <TextView
141            android:layout_width="wrap_content"
142            android:layout_height="wrap_content"
143            android:paddingLeft="10dp"
144            android:paddingRight="10dp"
145            android:id="@+id/audioUSBTestStatusLbl"
146            android:text="@string/audio_general_test_not_run"/>
147    </LinearLayout>
148
149    <include layout="@layout/pass_fail_buttons"/>
150</LinearLayout>
151</ScrollView>