Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.49 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="#ffffff">
  8.  
  9.  
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:gravity="center"
  14. android:orientation="vertical"
  15. app:layout_constraintBottom_toBottomOf="parent"
  16. app:layout_constraintTop_toTopOf="parent">
  17.  
  18.  
  19. <ImageView
  20. android:id="@+id/imageView"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:src="@drawable/ic_betify_logo_full" />
  24.  
  25.  
  26. <Button
  27. android:id="@+id/btn_login"
  28. android:layout_width="match_parent"
  29. android:layout_height="60dp"
  30. android:layout_marginStart="20dp"
  31. android:layout_marginEnd="20dp"
  32. android:layout_marginTop="60dp"
  33. android:background="@drawable/btn_corner_dark"
  34. android:elevation="8dp"
  35. android:fontFamily="@font/lato"
  36. android:stateListAnimator="@null"
  37. android:text="Log in"
  38. android:textAllCaps="false"
  39. android:textColor="#ffffff"
  40. android:textSize="16sp"
  41. android:typeface="normal" />
  42.  
  43. <LinearLayout
  44. android:id="@+id/linearLayout2"
  45. android:layout_width="match_parent"
  46. android:layout_height="wrap_content"
  47. android:layout_marginTop="16dp"
  48. android:gravity="center"
  49. android:orientation="horizontal">
  50.  
  51.  
  52. <TextView
  53. android:id="@+id/textViewLine"
  54. android:layout_width="65dp"
  55. android:layout_height="1dp"
  56. android:background="#e5e5e5" />
  57.  
  58. <TextView
  59. android:id="@+id/textView3"
  60. android:layout_width="wrap_content"
  61. android:layout_height="wrap_content"
  62. android:layout_marginStart="10dp"
  63. android:layout_marginEnd="10dp"
  64. android:fontFamily="@font/lato"
  65. android:text="or"
  66. android:textColor="#a9b2c7"
  67. android:textSize="14sp"
  68. android:typeface="normal" />
  69.  
  70. <TextView
  71. android:id="@+id/textViewLine2"
  72. android:layout_width="65dp"
  73. android:layout_height="1dp"
  74. android:background="#e5e5e5" />
  75.  
  76. </LinearLayout>
  77.  
  78. <Button
  79. android:id="@+id/btn_sing_up_facebook"
  80. android:layout_width="match_parent"
  81. android:layout_height="60dp"
  82. android:layout_marginEnd="20dp"
  83. android:layout_marginStart="20dp"
  84. android:layout_marginTop="16dp"
  85. android:layout_marginBottom="20dp"
  86. android:background="@drawable/btn_corner_white"
  87. android:elevation="8dp"
  88. android:fontFamily="@font/lato"
  89. android:stateListAnimator="@null"
  90. android:text="Sing Up"
  91. android:textAllCaps="false"
  92. android:textColor="#a9b2c7"
  93. android:textSize="16sp"
  94. android:typeface="normal"/>
  95.  
  96. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement