blob: 4e40150504195098cfcc89c3b4d57c8386573d36 [file] [log] [blame]
Chet Haase867a8662013-06-03 07:30:21 -07001<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 android:layout_width="match_parent"
3 android:layout_height="match_parent"
4 android:id="@+id/buttonContainer">
5 <Button
6 android:layout_width="wrap_content"
7 android:layout_height="wrap_content"
8 android:id="@+id/button"
9 android:layout_alignParentBottom="true"
10 android:layout_alignParentLeft="true"
11 android:text="@string/state3"/>
Chet Haase25a738f2013-06-04 16:35:14 -070012 <Button
13 android:layout_width="wrap_content"
14 android:layout_height="wrap_content"
15 android:id="@+id/button1"
16 android:layout_alignLeft="@+id/button"
17 android:layout_above="@+id/button"
18 android:text="@string/state3"/>
Chet Haase867a8662013-06-03 07:30:21 -070019
20</RelativeLayout>