Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout 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="fill_parent"
  6. android:layout_height="fill_parent"
  7. android:background="@drawable/grass">
  8. <EditText
  9. android:layout_width="match_perent"
  10. android:layout_height="150dp"
  11. android:layout_gravity="center"
  12. android:id="@+id/FName"
  13. android:hint="First Name"
  14. android:textSize="30sp"/>
  15.  
  16. <EditText
  17. android:layout_width="200dp"
  18. android:layout_height="wrap_content"
  19. android:layout_gravity="center_vertical"
  20. android:id="@+id/LName"
  21. android:hint="Last Name"
  22. android:textSize="30sp"/>
  23. <Button
  24. android:layout_width="100dp"
  25. android:layout_height="wrap_content"
  26. android:text="SAVE"
  27. android:layout_gravity="center"
  28.  
  29.  
  30. />
  31. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement