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="match_parent"> 18 19 <Space 20 android:layout_width="match_parent" 21 android:layout_height="5dp"/> 22 23 <TextView 24 android:text="@string/uapPlayTestInstructions" 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_play_playBtn" 34 android:layout_width="match_parent" 35 android:layout_height="wrap_content" 36 android:id="@+id/uap_playPlayBtn" 37 android:nextFocusUp="@+id/fail_button" 38 android:nextFocusDown="@+id/pass_button"/> 39 40 <TextView 41 android:layout_width="wrap_content" 42 android:layout_height="wrap_content" 43 android:text="@string/usbaudio_results_text"/> 44 45 </LinearLayout> 46 47 <include layout="@layout/pass_fail_buttons"/> 48</LinearLayout> 49</ScrollView>