Home | History | Annotate | Download | only in layout
      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 
      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         />
     20   </ScrollView>
     21 
     22   <LinearLayout android:id="@+id/buttons"
     23                 android:orientation="horizontal"
     24                 android:layout_width="wrap_content"
     25                 android:layout_height="wrap_content"/>
     26 
     27     <LinearLayout
     28         android:layout_width="match_parent"
     29         android:layout_height="wrap_content">
     30         <include layout="@layout/pass_fail_buttons"/>
     31     </LinearLayout>
     32 </LinearLayout>
     33