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