1<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"/> 12 <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"/> 19 20</RelativeLayout>