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