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:layout_width="match_parent" 23 android:layout_height="wrap_content"/> 24 25 <TextView 26 android:text="@string/uapButtonTestInstructions" 27 android:layout_width="match_parent" 28 android:layout_height="wrap_content"/> 29 30 <TextView 31 android:layout_width="match_parent" 32 android:layout_height="wrap_content"/> 33 34 <TextView 35 android:text="@string/uapButtonsBtnALbl" 36 android:id="@+id/uap_buttonsBtnALabelTx" 37 android:layout_width="match_parent" 38 android:layout_height="wrap_content" 39 /> 40 41 <TextView 42 android:text="@string/uapButtonsNotRecognized" 43 android:layout_width="match_parent" 44 android:layout_height="wrap_content" 45 android:id="@+id/uap_buttonsBtnAStatusTx" 46 android:paddingLeft="16dp"/> 47 48 <TextView 49 android:layout_width="match_parent" 50 android:layout_height="wrap_content"/> 51 52 <TextView 53 android:text="@string/uapButtonsBtnBLbl" 54 android:id="@+id/uap_buttonsBtnBLabelTx" 55 android:layout_width="match_parent" 56 android:layout_height="wrap_content" 57 /> 58 59 <TextView 60 android:text="@string/uapButtonsNotRecognized" 61 android:layout_width="match_parent" 62 android:layout_height="wrap_content" 63 android:id="@+id/uap_buttonsBtnBStatusTx" 64 android:paddingLeft="16dp"/> 65 66 <TextView 67 android:layout_width="match_parent" 68 android:layout_height="wrap_content"/> 69 70 <TextView 71 android:text="@string/uapButtonsBtnCLbl" 72 android:id="@+id/uap_buttonsBtnCLabelTx" 73 android:layout_width="match_parent" 74 android:layout_height="wrap_content" 75 /> 76 77 <TextView 78 android:text="@string/uapButtonsNotRecognized" 79 android:layout_width="match_parent" 80 android:layout_height="wrap_content" 81 android:id="@+id/uap_buttonsBtnCStatusTx" 82 android:paddingLeft="16dp"/> 83 84 <Space 85 android:layout_width="match_parent" 86 android:layout_height="5dp"/> 87 </LinearLayout> 88 89 <TextView 90 android:layout_width="wrap_content" 91 android:layout_height="wrap_content" 92 android:text="@string/usbaudio_results_text"/> 93 94 <include layout="@layout/pass_fail_buttons"/> 95</LinearLayout> 96</ScrollView>