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="wrap_content"> 20 21 <Space 22 android:layout_width="match_parent" 23 android:layout_height="5dp"/> 24 25 <TextView 26 android:text="@string/uapRecordTestInstructions" 27 android:layout_width="match_parent" 28 android:layout_height="wrap_content"/> 29 30 <Space 31 android:layout_width="match_parent" 32 android:layout_height="5dp"/> 33 34 <Button 35 android:text="@string/audio_uap_record_recordBtn" 36 android:layout_width="match_parent" 37 android:layout_height="wrap_content" 38 android:id="@+id/uap_recordRecordBtn" 39 android:nextFocusUp="@+id/fail_button" 40 android:nextFocusDown="@+id/uap_recordRecordLoopBtn"/> 41 42 <Button 43 android:text="@string/audio_uap_record_recordLoopbackBtn" 44 android:layout_width="match_parent" 45 android:layout_height="wrap_content" 46 android:id="@+id/uap_recordRecordLoopBtn" 47 android:nextFocusUp="@+id/uap_recordRecordBtn" 48 android:nextFocusDown="@+id/pass_button"/> 49 </LinearLayout> 50 51 <Space 52 android:layout_width="match_parent" 53 android:layout_height="5dp"/> 54 55 <com.android.cts.verifier.audio.audiolib.WaveScopeView 56 android:id="@+id/uap_recordWaveView" 57 android:layout_width="match_parent" 58 android:layout_height="256dp"/> 59 60 <TextView 61 android:layout_width="wrap_content" 62 android:layout_height="wrap_content" 63 android:text="@string/usbaudio_results_text"/> 64 65 <include layout="@layout/pass_fail_buttons"/> 66 67</LinearLayout> 68</ScrollView>