1<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
2android:layout_width="match_parent"
3android:layout_height="match_parent"
4android:id="@+id/scrollView"
5style="@style/RootLayoutPadding">
6
7<LinearLayout android:orientation="vertical"
8    android:layout_width="match_parent"
9    android:layout_height="wrap_content">
10
11    <TextView
12        android:text="@string/usb_restrictrecord_instructions"
13        android:layout_width="match_parent"
14        android:layout_height="wrap_content"
15        android:id="@+id/usb_restrictrecord_instructions"/>
16
17    <Button
18        android:layout_width="match_parent"
19        android:layout_height="wrap_content"
20        android:text="Test"
21        android:id="@+id/test_button"/>
22
23    <include layout="@layout/pass_fail_buttons"/>
24
25</LinearLayout>
26</ScrollView>