Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 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. android:background="@android:color/background_light"
  7. android:minWidth="25px"
  8. android:minHeight="25px"
  9. android:weightSum="100">
  10. <TextView
  11. android:text="Create an account"
  12. android:textAppearance="?android:attr/textAppearanceMedium"
  13. android:layout_width="match_parent"
  14. android:layout_weight="20"
  15. android:layout_height="0dp"
  16. android:textColor="#368DEB"
  17. android:id="@+id/txtCreateAccount"
  18. android:gravity="center"
  19. android:textStyle="bold"
  20. android:textSize="25sp" />
  21. <Button
  22. android:text="Sing In"
  23. android:layout_width="match_parent"
  24. android:layout_height="0dp"
  25. android:layout_weight="15"
  26. android:id="@+id/btnSingIn"
  27. android:layout_marginLeft="20dp"
  28. android:layout_marginRight="20dp"
  29. android:textSize="15sp"
  30. android:gravity="center" />
  31. <TextView
  32. android:text="Or"
  33. android:textAppearance="?android:attr/textAppearanceMedium"
  34. android:layout_width="match_parent"
  35. android:layout_height="0dp"
  36. android:layout_weight="15"
  37. android:textColor="#000000"
  38. android:id="@+id/txtOr"
  39. android:gravity="center" />
  40. <Button
  41. android:text="Sing Up with Email"
  42. android:layout_width="match_parent"
  43. android:layout_height="0dp"
  44. android:layout_weight="15"
  45. android:id="@+id/btnSingUp"
  46. android:layout_marginLeft="20dp"
  47. android:layout_marginRight="20dp"
  48. android:textSize="15sp" />
  49. <RelativeLayout
  50. android:layout_width="match_parent"
  51. android:layout_height="0dp"
  52. android:layout_weight="35"
  53. android:minWidth="25px"
  54. android:minHeight="25px">
  55. <ProgressBar
  56. android:layout_width="wrap_content"
  57. android:layout_height="wrap_content"
  58. android:id="@+id/progressBar1"
  59. android:layout_centerInParent="true" />
  60. </RelativeLayout>
  61. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement