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 <include layout="@layout/uap_usb_confirm"/> 14 15 <include layout="@layout/uap_profile_header"/> 16 17 <LinearLayout 18 android:orientation="vertical" 19 android:layout_width="match_parent" 20 android:layout_height="match_parent"> 21 22 <TextView 23 android:text="@string/uapPeripheralProfileAttributes" 24 android:layout_width="match_parent" 25 android:layout_height="wrap_content"/> 26 27 <TextView 28 android:text="@string/audio_general_Input" 29 android:layout_width="match_parent" 30 android:layout_height="wrap_content"/> 31 32 <TextView 33 android:text="----" 34 android:layout_width="match_parent" 35 android:layout_height="wrap_content" 36 android:id="@+id/uap_inChanMasksTx"/> 37 38 <TextView 39 android:text="----" 40 android:layout_width="match_parent" 41 android:layout_height="wrap_content" 42 android:id="@+id/uap_inPosMasksTx"/> 43 44 <TextView 45 android:text="----" 46 android:layout_width="match_parent" 47 android:layout_height="wrap_content" 48 android:id="@+id/uap_inEncodingsTx"/> 49 50 <TextView 51 android:text="----" 52 android:layout_width="match_parent" 53 android:layout_height="wrap_content" 54 android:id="@+id/uap_inRatesTx"/> 55 56 <TextView 57 android:text="@string/audio_general_Output" 58 android:layout_width="match_parent" 59 android:layout_height="wrap_content"/> 60 61 <TextView 62 android:text="----" 63 android:layout_width="match_parent" 64 android:layout_height="wrap_content" 65 android:id="@+id/uap_outChanMasksTx"/> 66 67 <TextView 68 android:text="----" 69 android:layout_width="match_parent" 70 android:layout_height="wrap_content" 71 android:id="@+id/uap_outPosMasksTx"/> 72 73 <TextView 74 android:text="----" 75 android:layout_width="match_parent" 76 android:layout_height="wrap_content" 77 android:id="@+id/uap_outEncodingsTx"/> 78 79 <TextView 80 android:text="----" 81 android:layout_width="match_parent" 82 android:layout_height="wrap_content" 83 android:id="@+id/uap_outRatesTx"/> 84 </LinearLayout> 85 86 <LinearLayout 87 android:orientation="vertical" 88 android:layout_width="match_parent" 89 android:layout_height="match_parent"> 90 91 <TextView 92 android:text="@string/audio_general_status" 93 android:layout_width="match_parent" 94 android:layout_height="wrap_content"/> 95 96 <TextView 97 android:text="status" 98 android:layout_width="match_parent" 99 android:layout_height="wrap_content" 100 android:id="@+id/uap_attribsStatusTx" 101 android:paddingLeft="16dp" 102 android:textSize="18sp"/> 103 </LinearLayout> 104 105 <include layout="@layout/pass_fail_buttons"/> 106</LinearLayout> 107</ScrollView>