Home | History | Annotate | Download | only in layout
      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_alignParentBottom="true"
     10             android:layout_alignParentLeft="true"
     11             android:text="@string/state3"/>
     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_above="@+id/button"
     18             android:text="@string/state3"/>
     19 
     20 </RelativeLayout>