blob: f82dfb08bb911047861a938c522482c8c63fbbef [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_alignParentTop="true"
10 android:layout_alignParentLeft="true"
11 android:text="@string/state1"/>
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_below="@+id/button"
18 android:text="@string/state1"/>
Chet Haase867a8662013-06-03 07:30:21 -070019
20</RelativeLayout>