• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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="0dp"
12        android:layout_weight="1">
13        <TextView android:id="@+id/info"
14            android:layout_width="match_parent"
15            android:layout_height="wrap_content"
16            android:textSize="18sp"
17            android:padding="5dp"
18            android:text="@string/dc_start_alarm_test_info"/>
19    </ScrollView>
20
21    <LinearLayout android:id="@+id/buttons"
22        android:orientation="horizontal"
23        android:layout_width="wrap_content"
24        android:layout_height="wrap_content"/>
25
26    <LinearLayout
27        android:layout_width="match_parent"
28        android:layout_height="wrap_content">
29
30        <include layout="@layout/pass_fail_buttons"/>
31    </LinearLayout>
32</LinearLayout>
33