Advertisement
Hubert_M

Untitled

Jun 25th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".ThirdActivity">
  8.  
  9. <EditText
  10. android:id="@+id/edit_text"
  11. android:layout_width="match_parent"
  12. android:layout_height="200dp" />
  13.  
  14. <Button
  15. android:id="@+id/button_save"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_below="@+id/edit_text"
  19. android:layout_centerHorizontal="true"
  20. android:layout_marginTop="16dp"
  21. android:text="save"
  22. android:onClick="save"/>
  23.  
  24. <Button
  25. android:id="@+id/button_load"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:layout_alignStart="@+id/button_save"
  29. android:layout_below="@+id/button_save"
  30. android:layout_marginTop="17dp"
  31. android:text="load"
  32. android:onClick="load"/>
  33. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement