1 <?xml version="1.0" encoding="utf-8"?> 2 3 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 > 7 8 <LinearLayout android:orientation="vertical" 9 android:layout_width="match_parent" 10 android:layout_height="wrap_content" 11 android:layout_alignParentTop="true" 12 android:padding="5dp" 13 > 14 15 <TextView android:id="@+id/info" 16 android:layout_width="wrap_content" 17 android:textSize="18sp" 18 android:layout_height="wrap_content" 19 android:text="@string/dc_show_alarms_test_info" 20 /> 21 22 <LinearLayout android:id="@+id/buttons" 23 android:orientation="horizontal" 24 android:layout_width="wrap_content" 25 android:layout_height="wrap_content" 26 android:layout_alignParentTop="true"/> 27 </LinearLayout> 28 29 <LinearLayout 30 android:layout_width="match_parent" 31 android:layout_height="wrap_content" 32 android:layout_alignParentBottom="true" 33 > 34 <include layout="@layout/pass_fail_buttons"/> 35 </LinearLayout> 36 </RelativeLayout> 37