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