Advertisement
Guest User

layout

a guest
Apr 27th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:p1="http://schemas.android.com/apk/res/android"
  3. p1:orientation="vertical"
  4. p1:layout_width="match_parent"
  5. p1:layout_height="match_parent"
  6. p1:id="@+id/linearLayout1">
  7. <ImageView
  8. p1:src="@android:drawable/ic_menu_gallery"
  9. p1:layout_width="match_parent"
  10. p1:layout_height="wrap_content"
  11. p1:id="@+id/imageView1" />
  12. <TextView
  13. p1:text="Entry/Register:"
  14. p1:textAppearance="?android:attr/textAppearanceMedium"
  15. p1:layout_width="match_parent"
  16. p1:layout_height="wrap_content"
  17. p1:id="@+id/textView2" />
  18. <TextView
  19. p1:text="Username:"
  20. p1:textAppearance="?android:attr/textAppearanceMedium"
  21. p1:layout_width="match_parent"
  22. p1:layout_height="wrap_content"
  23. p1:id="@+id/textView1" />
  24. <EditText
  25. p1:layout_width="match_parent"
  26. p1:layout_height="wrap_content"
  27. p1:id="@+id/editText1" />
  28. <TextView
  29. p1:textAppearance="?android:attr/textAppearanceMedium"
  30. p1:layout_width="match_parent"
  31. p1:layout_height="wrap_content"
  32. p1:id="@+id/textView3"
  33. p1:text="Password:" />
  34. <EditText
  35. p1:layout_width="match_parent"
  36. p1:layout_height="wrap_content"
  37. p1:id="@+id/editText2" />
  38. <GridLayout
  39. p1:layout_width="176.0dp"
  40. p1:layout_height="wrap_content"
  41. p1:id="@+id/gridLayout1"
  42. p1:columnCount="3"
  43. p1:rowCount="1"
  44. p1:layout_gravity="center_horizontal"
  45. p1:layout_marginLeft="75dp"
  46. p1:layout_marginRight="75dp">
  47. <Button
  48. p1:id="@+id/button1"
  49. p1:text="Entry" />
  50. <Button
  51. p1:text="Register"
  52. p1:id="@+id/button2" />
  53. </GridLayout>
  54. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement