Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <android.support.wearable.view.BoxInsetLayout xmlns:android="http://schemas.android.com/apk/res/android"
      4     xmlns:app="http://schemas.android.com/apk/res-auto"
      5     android:layout_width="match_parent"
      6     android:layout_height="match_parent">
      7     <LinearLayout app:layout_box="all"
      8         android:layout_width="match_parent"
      9         android:layout_height="match_parent"
     10         android:orientation="vertical">
     11 
     12         <ScrollView
     13             android:layout_width="match_parent"
     14             android:layout_height="0dp"
     15             android:layout_weight="1">
     16             <TextView android:id="@+id/info"
     17                 android:layout_width="match_parent"
     18                 android:layout_height="wrap_content"
     19                 android:textSize="18sp"
     20                 android:padding="5dp"
     21                 android:text="@string/dc_start_alarm_test_info"/>
     22         </ScrollView>
     23 
     24         <LinearLayout android:id="@+id/buttons"
     25             android:orientation="horizontal"
     26             android:layout_width="wrap_content"
     27             android:layout_height="wrap_content"/>
     28 
     29         <LinearLayout
     30             android:layout_width="match_parent"
     31             android:layout_height="wrap_content">
     32 
     33             <include layout="@layout/pass_fail_buttons"/>
     34         </LinearLayout>
     35     </LinearLayout>
     36 </android.support.wearable.view.BoxInsetLayout>
     37