| 1234567891011121314151617181920212223242526 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- <Button
- android:id="@+id/button1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_alignParentTop="true"
- android:layout_marginLeft="20dp"
- android:layout_marginTop="88dp"
- android:text="Button" />
- <Button
- android:id="@+id/button2"
- style="?android:attr/buttonStyleInset"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/button1"
- android:layout_marginTop="49dp"
- android:layout_toRightOf="@+id/button1"
- android:text="Button" />
- </RelativeLayout>
|