Guest User

Untitled

a guest
Feb 6th, 2016
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <TextView
  7. android:text="Username:"
  8. android:textAppearance="?android:attr/textAppearanceMedium"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:id="@+id/textView3" />
  12. <EditText
  13. android:inputType="textPersonName"
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:id="@+id/txtUsername" />
  17. <TextView
  18. android:text="Email:"
  19. android:textAppearance="?android:attr/textAppearanceMedium"
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:id="@+id/textView1" />
  23. <EditText
  24. android:inputType="textEmailAddress"
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:id="@+id/txtEmail" />
  28. <TextView
  29. android:text="Password:"
  30. android:textAppearance="?android:attr/textAppearanceMedium"
  31. android:layout_width="match_parent"
  32. android:layout_height="wrap_content"
  33. android:id="@+id/textView2" />
  34. <EditText
  35. android:inputType="textPassword"
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:id="@+id/txtPassword" />
  39. <Button
  40. android:text="LOG IN"
  41. android:layout_width="match_parent"
  42. android:layout_height="wrap_content"
  43. android:id="@+id/btnLogin" />
  44. </LinearLayout>
Add Comment
Please, Sign In to add comment