blob: e23f4410ec423ef2d9f41788024e8d4aff558810 [file] [log] [blame]
Isaac Katzenelsond96d0662013-10-02 17:06:28 -07001<?xml version="1.0" encoding="utf-8"?>
2
Alon Albert99af71d2014-02-21 09:19:37 -08003<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
Isaac Katzenelsond96d0662013-10-02 17:06:28 -07004 android:layout_width="match_parent"
5 android:layout_height="match_parent"
Alon Albert99af71d2014-02-21 09:19:37 -08006 android:orientation="vertical"
Isaac Katzenelsond96d0662013-10-02 17:06:28 -07007 >
8
Alon Albert99af71d2014-02-21 09:19:37 -08009 <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 />
20 </ScrollView>
Isaac Katzenelsond96d0662013-10-02 17:06:28 -070021
Alon Albert99af71d2014-02-21 09:19:37 -080022 <LinearLayout android:id="@+id/buttons"
23 android:orientation="horizontal"
24 android:layout_width="wrap_content"
25 android:layout_height="wrap_content"/>
Isaac Katzenelsond96d0662013-10-02 17:06:28 -070026
27 <LinearLayout
28 android:layout_width="match_parent"
Alon Albert99af71d2014-02-21 09:19:37 -080029 android:layout_height="wrap_content">
Isaac Katzenelsond96d0662013-10-02 17:06:28 -070030 <include layout="@layout/pass_fail_buttons"/>
31 </LinearLayout>
Alon Albert99af71d2014-02-21 09:19:37 -080032</LinearLayout>