• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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         <Space
22            android:layout_width="match_parent"
23            android:layout_height="5dp"/>
24
25        <TextView
26            android:text="@string/uapPlayTestInstructions"
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_play_playBtn"
36            android:layout_width="match_parent"
37            android:layout_height="wrap_content"
38            android:id="@+id/uap_playPlayBtn"
39            android:nextFocusUp="@+id/fail_button"
40            android:nextFocusDown="@+id/pass_button"/>
41
42        <TextView
43            android:layout_width="wrap_content"
44            android:layout_height="wrap_content"
45            android:text="@string/usbaudio_results_text"/>
46
47        </LinearLayout>
48
49    <include layout="@layout/pass_fail_buttons"/>
50</LinearLayout>
51</ScrollView>