1<?xml version="1.0" encoding="utf-8"?> 2 3<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 android:orientation="vertical" 7 style="@style/RootLayoutPadding"> 8 9 <ScrollView 10 android:layout_width="match_parent" 11 android:layout_height="match_parent"> 12 <LinearLayout 13 android:layout_width="match_parent" 14 android:layout_height="match_parent" 15 android:orientation="vertical"> 16 <TextView android:id="@+id/info" 17 android:layout_width="match_parent" 18 android:layout_height="wrap_content" 19 android:textSize="12dip" 20 android:padding="2dip" 21 android:text="@string/dc_start_alarm_test_info"/> 22 23 <LinearLayout android:id="@+id/buttons" 24 android:orientation="vertical" 25 android:layout_width="match_parent" 26 android:layout_height="match_parent"/> 27 28 <LinearLayout 29 android:layout_width="match_parent" 30 android:layout_height="wrap_content"> 31 <include layout="@layout/pass_fail_buttons"/> 32 </LinearLayout> 33</LinearLayout> 34</ScrollView> 35</LinearLayout> 36