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