activity_register.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/text_black"
  8. android:orientation="vertical"
  9. tools:context=".screen.register.RegisterActivity">
  10. <FrameLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content">
  13. <androidx.cardview.widget.CardView
  14. android:id="@+id/backgroundCard"
  15. android:layout_width="match_parent"
  16. android:layout_height="200dp"
  17. app:cardBackgroundColor="@color/cardview_dark_background"
  18. app:cardElevation="0dp" />
  19. <ImageView
  20. android:id="@+id/profileImage"
  21. android:layout_width="100dp"
  22. android:layout_height="100dp"
  23. android:layout_gravity="center_horizontal"
  24. android:layout_marginTop="150dp"
  25. android:src="@drawable/ic_user_white" />
  26. </FrameLayout>
  27. <LinearLayout
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent"
  30. android:orientation="vertical"
  31. android:padding="15dp">
  32. <com.google.android.material.textfield.TextInputLayout
  33. android:id="@+id/til_firstname"
  34. style="@style/BoxInputLayout"
  35. android:layout_width="match_parent"
  36. android:layout_height="48dp"
  37. app:endIconMode="clear_text"
  38. app:hintEnabled="false">
  39. <androidx.appcompat.widget.AppCompatEditText
  40. android:id="@+id/et_firstname"
  41. android:layout_width="match_parent"
  42. android:layout_height="match_parent"
  43. android:background="@color/color_white"
  44. android:hint="@string/hint_firstname"
  45. android:inputType="text"
  46. android:maxLength="50"
  47. android:padding="0dp" />
  48. </com.google.android.material.textfield.TextInputLayout>
  49. <com.google.android.material.textfield.TextInputLayout
  50. android:id="@+id/til_lastname"
  51. style="@style/BoxInputLayout"
  52. android:layout_width="match_parent"
  53. android:layout_height="48dp"
  54. app:endIconMode="clear_text"
  55. app:hintEnabled="false">
  56. <androidx.appcompat.widget.AppCompatEditText
  57. android:id="@+id/et_lastname"
  58. android:layout_width="match_parent"
  59. android:layout_height="match_parent"
  60. android:background="@color/color_white"
  61. android:hint="@string/hint_lastname"
  62. android:inputType="text"
  63. android:maxLength="50"
  64. android:padding="0dp" />
  65. </com.google.android.material.textfield.TextInputLayout>
  66. <androidx.appcompat.widget.AppCompatSpinner
  67. android:id="@+id/et_gender"
  68. android:layout_width="match_parent"
  69. android:layout_height="wrap_content"
  70. android:background="@color/color_white"
  71. android:hint="@string/hint_lastname"
  72. android:inputType="text"
  73. android:maxLength="50"
  74. android:paddingTop="10dp"
  75. android:paddingBottom="10dp" />
  76. <LinearLayout
  77. android:layout_width="match_parent"
  78. android:layout_height="wrap_content"
  79. android:background="@color/color_gray_300"
  80. android:orientation="vertical">
  81. <LinearLayout
  82. android:layout_width="match_parent"
  83. android:layout_height="wrap_content"
  84. android:orientation="horizontal">
  85. <RadioGroup
  86. android:id="@+id/radioGroup"
  87. android:layout_width="match_parent"
  88. android:layout_height="wrap_content"
  89. android:orientation="horizontal">
  90. <RadioButton
  91. android:id="@+id/radioButtonEmail"
  92. android:layout_width="wrap_content"
  93. android:layout_height="wrap_content"
  94. android:checked="true"
  95. android:text="Email" />
  96. <RadioButton
  97. android:id="@+id/radioButtonPhone"
  98. android:layout_width="wrap_content"
  99. android:layout_height="wrap_content"
  100. android:text="Phone Number" />
  101. </RadioGroup>
  102. </LinearLayout>
  103. <com.google.android.material.textfield.TextInputLayout
  104. android:id="@+id/til_email"
  105. style="@style/BoxInputLayout"
  106. android:layout_width="match_parent"
  107. android:layout_height="48dp"
  108. app:endIconMode="clear_text"
  109. app:hintEnabled="false">
  110. <androidx.appcompat.widget.AppCompatEditText
  111. android:id="@+id/et_email"
  112. android:layout_width="match_parent"
  113. android:layout_height="match_parent"
  114. android:background="@color/color_white"
  115. android:hint="@string/hint_email"
  116. android:inputType="text"
  117. android:maxLength="50"
  118. android:padding="0dp" />
  119. </com.google.android.material.textfield.TextInputLayout>
  120. <com.google.android.material.textfield.TextInputLayout
  121. android:id="@+id/til_phone"
  122. style="@style/BoxInputLayout"
  123. android:layout_width="match_parent"
  124. android:layout_height="48dp"
  125. android:visibility="gone"
  126. app:endIconMode="clear_text"
  127. app:hintEnabled="false">
  128. <androidx.appcompat.widget.AppCompatEditText
  129. android:id="@+id/et_phone"
  130. android:layout_width="match_parent"
  131. android:layout_height="match_parent"
  132. android:background="@color/color_white"
  133. android:hint="@string/hint_phone"
  134. android:inputType="text"
  135. android:maxLength="50"
  136. android:padding="0dp" />
  137. </com.google.android.material.textfield.TextInputLayout>
  138. </LinearLayout>
  139. <com.google.android.material.textfield.TextInputLayout
  140. android:id="@+id/til_password"
  141. style="@style/BoxInputLayout"
  142. android:layout_width="match_parent"
  143. android:layout_height="48dp"
  144. app:endIconMode="clear_text"
  145. app:hintEnabled="false">
  146. <androidx.appcompat.widget.AppCompatEditText
  147. android:id="@+id/et_password"
  148. android:layout_width="match_parent"
  149. android:layout_height="match_parent"
  150. android:background="@color/color_white"
  151. android:hint="@string/hint_password"
  152. android:inputType="text"
  153. android:maxLength="50"
  154. android:padding="0dp" />
  155. </com.google.android.material.textfield.TextInputLayout>
  156. <com.google.android.material.textfield.TextInputLayout
  157. android:id="@+id/til_confirm_password"
  158. style="@style/BoxInputLayout"
  159. android:layout_width="match_parent"
  160. android:layout_height="48dp"
  161. app:endIconMode="clear_text"
  162. app:hintEnabled="false">
  163. <androidx.appcompat.widget.AppCompatEditText
  164. android:id="@+id/et_confirm_password"
  165. android:layout_width="match_parent"
  166. android:layout_height="match_parent"
  167. android:background="@color/color_white"
  168. android:hint="@string/hint_confirm_password"
  169. android:inputType="text"
  170. android:maxLength="50"
  171. android:padding="0dp" />
  172. </com.google.android.material.textfield.TextInputLayout>
  173. <Button
  174. android:id="@+id/registerButton"
  175. android:layout_width="match_parent"
  176. android:layout_height="wrap_content"
  177. android:layout_marginStart="32dp"
  178. android:layout_marginTop="32dp"
  179. android:layout_marginEnd="32dp"
  180. android:text="Register"
  181. app:layout_constraintEnd_toEndOf="parent"
  182. app:layout_constraintStart_toStartOf="parent"
  183. app:layout_constraintTop_toBottomOf="@+id/confirmPasswordEditText" />
  184. </LinearLayout>
  185. </androidx.appcompat.widget.LinearLayoutCompat>