temp.xml 931 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent" >
  5. <Button
  6. android:id="@+id/button1"
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:layout_alignParentLeft="true"
  10. android:layout_alignParentTop="true"
  11. android:layout_marginLeft="20dp"
  12. android:layout_marginTop="88dp"
  13. android:text="Button" />
  14. <Button
  15. android:id="@+id/button2"
  16. style="?android:attr/buttonStyleInset"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_below="@+id/button1"
  20. android:layout_marginTop="49dp"
  21. android:layout_toRightOf="@+id/button1"
  22. android:text="Button" />
  23. </RelativeLayout>