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        <TextView
22            android:text="@string/uapPeripheralProfileStatus"
23            android:layout_width="match_parent"
24            android:layout_height="wrap_content"/>
25
26        <TextView
27            android:text="status"
28            android:layout_width="match_parent"
29            android:layout_height="wrap_content"
30            android:id="@+id/uap_attribsStatusTx"
31            android:paddingLeft="16dp"/>
32        </LinearLayout>
33
34    <TextView
35        android:layout_width="wrap_content"
36        android:layout_height="wrap_content"
37        android:text="@string/usbaudio_results_text"/>
38
39    <include layout="@layout/pass_fail_buttons"/>
40</LinearLayout>
41</ScrollView>