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