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