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