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