activity_settings.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="#FFFFFF"
  6. android:weightSum="1">
  7. <RelativeLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent">
  10. <LinearLayout
  11. android:orientation="vertical"
  12. android:layout_width="match_parent"
  13. android:layout_height="493dp"
  14. android:layout_gravity="center_horizontal"
  15. android:id="@+id/root_layout"
  16. android:layout_above="@+id/button3"
  17. android:layout_alignParentTop="true"
  18. android:measureWithLargestChild="false" />
  19. <Button
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:text="OK"
  23. android:id="@+id/button3"
  24. android:layout_alignParentBottom="true"
  25. android:layout_centerHorizontal="true"
  26. android:onClick="onClick" />
  27. </RelativeLayout>
  28. </LinearLayout>