Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 35
  36. 36
  37. 37
  38. 38
  39. 39
  40. 40
  41. 41
  42. 42
  43. 43
  44. 44
  45. 45
  46. 46
  47. 47
  48. 48
  49. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  50. xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
  51. android:orientation="vertical"
  52. android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
  53. android:paddingRight="@dimen/activity_horizontal_margin"
  54. android:paddingTop="@dimen/activity_vertical_margin"
  55. android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
  56.  
  57.  
  58. <TextView
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:text="Username" />
  62.  
  63. <EditText
  64. android:layout_width="match_parent"
  65. android:layout_height="wrap_content"
  66. android:id="@+id/editTextUsername" />
  67.  
  68. <TextView
  69. android:layout_width="wrap_content"
  70. android:layout_height="wrap_content"
  71. android:text="email" />
  72.  
  73. <EditText
  74. android:layout_width="match_parent"
  75. android:layout_height="wrap_content"
  76. android:id="@+id/editTextEmail" />
  77.  
  78. <TextView
  79. android:layout_width="wrap_content"
  80. android:layout_height="wrap_content"
  81. android:text="Password" />
  82.  
  83. <EditText
  84. android:layout_width="match_parent"
  85. android:layout_height="wrap_content"
  86. android:password="true"
  87. android:id="@+id/editTextPassword" />
  88.  
  89. <Button
  90. android:layout_width="match_parent"
  91. android:layout_height="wrap_content"
  92. android:text="Register"
  93. android:id="@+id/buttonRegister" />
  94.  
  95.  
  96. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement