ac_unbind_tenant_layout.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout 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. <include
  8. android:id="@+id/toolbar_include"
  9. layout="@layout/common_toolbar_layout" />
  10. <ScrollView
  11. android:id="@+id/scrollView"
  12. android:layout_width="match_parent"
  13. android:layout_height="0dp"
  14. android:layout_marginStart="13dp"
  15. android:layout_marginTop="12dp"
  16. android:layout_marginEnd="13dp"
  17. android:layout_marginBottom="30dp"
  18. android:background="@drawable/bg_white_10dp"
  19. android:scrollbars="vertical"
  20. android:visibility="gone"
  21. app:layout_constraintBottom_toTopOf="@+id/tv_confirm"
  22. app:layout_constraintLeft_toLeftOf="parent"
  23. app:layout_constraintRight_toRightOf="parent"
  24. app:layout_constraintTop_toBottomOf="@+id/toolbar_include">
  25. <androidx.constraintlayout.widget.ConstraintLayout
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28. android:paddingBottom="10dp">
  29. <ImageView
  30. android:id="@+id/iv_tip"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_marginTop="32dp"
  34. android:src="@drawable/icon_exclamation_mark_tip"
  35. app:layout_constraintLeft_toLeftOf="parent"
  36. app:layout_constraintRight_toRightOf="parent"
  37. app:layout_constraintTop_toTopOf="parent" />
  38. <TextView
  39. android:id="@+id/tv_title"
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:layout_marginTop="24dp"
  43. android:includeFontPadding="false"
  44. android:textColor="@color/color_333333"
  45. android:textSize="@dimen/sp_18"
  46. android:textStyle="bold"
  47. app:layout_constraintLeft_toLeftOf="parent"
  48. app:layout_constraintRight_toRightOf="parent"
  49. app:layout_constraintTop_toBottomOf="@+id/iv_tip"
  50. tools:text="将155****4306所绑定的机构解绑" />
  51. <TextView
  52. android:id="@+id/tv_tip"
  53. android:layout_width="0dp"
  54. android:layout_height="wrap_content"
  55. android:layout_marginTop="16dp"
  56. android:includeFontPadding="false"
  57. android:paddingStart="12dp"
  58. android:paddingEnd="12dp"
  59. android:textColor="@color/color_666666"
  60. app:layout_constraintLeft_toLeftOf="parent"
  61. app:layout_constraintRight_toRightOf="parent"
  62. app:layout_constraintTop_toBottomOf="@+id/tv_title"
  63. tools:text="解绑机构后,在此机构的数据将无法恢复,确认要继续解绑" />
  64. <TextView
  65. android:id="@+id/tv_star"
  66. android:layout_width="wrap_content"
  67. android:layout_height="wrap_content"
  68. android:includeFontPadding="false"
  69. android:paddingStart="12dp"
  70. android:text="*"
  71. android:textColor="@color/color_ff5a56"
  72. android:textSize="@dimen/sp_16"
  73. app:layout_constraintBottom_toBottomOf="@+id/tv_reason_title"
  74. app:layout_constraintLeft_toLeftOf="parent"
  75. app:layout_constraintTop_toTopOf="@+id/tv_reason_title" />
  76. <TextView
  77. android:id="@+id/tv_reason_title"
  78. android:layout_width="wrap_content"
  79. android:layout_height="wrap_content"
  80. android:layout_marginTop="28dp"
  81. android:includeFontPadding="false"
  82. android:text="解绑原因:"
  83. android:textColor="@color/color_333333"
  84. android:textSize="@dimen/sp_16"
  85. android:textStyle="bold"
  86. app:layout_constraintLeft_toRightOf="@+id/tv_star"
  87. app:layout_constraintTop_toBottomOf="@+id/tv_tip" />
  88. <EditText
  89. android:id="@+id/et_content"
  90. android:layout_width="match_parent"
  91. android:layout_height="@dimen/dp_83"
  92. android:layout_marginLeft="12dp"
  93. android:layout_marginTop="10dp"
  94. android:layout_marginRight="12dp"
  95. android:background="@drawable/shape_6dp_border_eaeaea_1dp"
  96. android:gravity="left"
  97. android:hint="请输入解绑原因"
  98. android:inputType="text"
  99. android:paddingLeft="5dp"
  100. android:paddingTop="5dp"
  101. android:paddingRight="5dp"
  102. android:paddingBottom="5dp"
  103. android:textColor="@color/black_333"
  104. android:textColorHint="@color/color_999999"
  105. android:textSize="@dimen/sp_16"
  106. app:layout_constraintLeft_toLeftOf="parent"
  107. app:layout_constraintRight_toRightOf="parent"
  108. app:layout_constraintTop_toBottomOf="@+id/tv_reason_title" />
  109. <View
  110. android:id="@+id/view_verify_code_bg"
  111. android:layout_width="0dp"
  112. android:layout_height="54dp"
  113. android:layout_marginStart="12dp"
  114. android:layout_marginTop="12dp"
  115. android:layout_marginEnd="12dp"
  116. android:layout_marginBottom="23dp"
  117. android:background="@drawable/shape_6dp_border_eaeaea_1dp"
  118. app:layout_constraintLeft_toLeftOf="parent"
  119. app:layout_constraintRight_toRightOf="parent"
  120. app:layout_constraintTop_toBottomOf="@+id/et_content" />
  121. <TextView
  122. android:id="@+id/tv_send_verify_code"
  123. android:layout_width="94dp"
  124. android:layout_height="wrap_content"
  125. android:gravity="center"
  126. android:text="获取验证码"
  127. android:textColor="@color/color_ff2dc7aa"
  128. android:textSize="@dimen/sp_14"
  129. app:layout_constraintBottom_toBottomOf="@+id/view_verify_code_bg"
  130. app:layout_constraintRight_toRightOf="@+id/view_verify_code_bg"
  131. app:layout_constraintTop_toTopOf="@+id/view_verify_code_bg" />
  132. <View
  133. android:id="@+id/view_line"
  134. android:layout_width="1dp"
  135. android:layout_height="18dp"
  136. android:background="@color/color_ff2dc7aa"
  137. app:layout_constraintBottom_toBottomOf="@+id/tv_send_verify_code"
  138. app:layout_constraintRight_toLeftOf="@+id/tv_send_verify_code"
  139. app:layout_constraintTop_toTopOf="@+id/tv_send_verify_code" />
  140. <EditText
  141. android:id="@+id/et_num"
  142. android:layout_width="0dp"
  143. android:layout_height="0dp"
  144. android:background="@color/transparent"
  145. android:hint="请输入短信验证码"
  146. android:inputType="number"
  147. android:maxLength="6"
  148. android:maxLines="1"
  149. android:paddingStart="12dp"
  150. android:textColor="@color/color_333333"
  151. android:textColorHint="@color/color_999999"
  152. android:textSize="@dimen/sp_16"
  153. app:layout_constraintBottom_toBottomOf="@+id/view_verify_code_bg"
  154. app:layout_constraintLeft_toLeftOf="@+id/view_verify_code_bg"
  155. app:layout_constraintRight_toLeftOf="@+id/view_line"
  156. app:layout_constraintTop_toTopOf="@+id/view_verify_code_bg" />
  157. </androidx.constraintlayout.widget.ConstraintLayout>
  158. </ScrollView>
  159. <androidx.constraintlayout.widget.ConstraintLayout
  160. android:id="@+id/cs_unbind_detail"
  161. android:layout_width="match_parent"
  162. android:layout_height="0dp"
  163. android:layout_marginStart="13dp"
  164. android:layout_marginTop="12dp"
  165. android:layout_marginEnd="13dp"
  166. android:layout_marginBottom="30dp"
  167. android:background="@drawable/bg_white_10dp"
  168. android:scrollbars="vertical"
  169. android:visibility="gone"
  170. app:layout_constraintBottom_toTopOf="@+id/tv_confirm"
  171. app:layout_constraintLeft_toLeftOf="parent"
  172. app:layout_constraintRight_toRightOf="parent"
  173. app:layout_constraintTop_toBottomOf="@+id/toolbar_include">
  174. <ImageView
  175. android:id="@+id/iv_tip2"
  176. android:layout_width="wrap_content"
  177. android:layout_height="wrap_content"
  178. android:layout_marginTop="16dp"
  179. android:src="@drawable/icon_unbind_tenant_tip"
  180. app:layout_constraintLeft_toLeftOf="parent"
  181. app:layout_constraintRight_toRightOf="parent"
  182. app:layout_constraintTop_toTopOf="parent" />
  183. <TextView
  184. android:id="@+id/tv_tip2"
  185. android:layout_width="0dp"
  186. android:layout_height="wrap_content"
  187. android:layout_marginTop="26dp"
  188. android:gravity="center"
  189. android:includeFontPadding="false"
  190. android:paddingStart="12dp"
  191. android:paddingEnd="12dp"
  192. android:textColor="@color/color_666666"
  193. app:layout_constraintLeft_toLeftOf="parent"
  194. app:layout_constraintRight_toRightOf="parent"
  195. app:layout_constraintTop_toBottomOf="@+id/iv_tip2"
  196. tools:text=",正在审核中,请耐心等待机构人员处理" />
  197. <TextView
  198. android:id="@+id/tv_star2"
  199. android:layout_width="wrap_content"
  200. android:layout_height="wrap_content"
  201. android:includeFontPadding="false"
  202. android:paddingStart="12dp"
  203. android:text="*"
  204. android:textColor="@color/color_ff5a56"
  205. android:textSize="@dimen/sp_16"
  206. app:layout_constraintBottom_toBottomOf="@+id/tv_reason_title2"
  207. app:layout_constraintLeft_toLeftOf="parent"
  208. app:layout_constraintTop_toTopOf="@+id/tv_reason_title2" />
  209. <TextView
  210. android:id="@+id/tv_reason_title2"
  211. android:layout_width="wrap_content"
  212. android:layout_height="wrap_content"
  213. android:layout_marginTop="28dp"
  214. android:includeFontPadding="false"
  215. android:text="解绑原因:"
  216. android:textColor="@color/color_333333"
  217. android:textSize="@dimen/sp_16"
  218. android:textStyle="bold"
  219. app:layout_constraintLeft_toRightOf="@+id/tv_star2"
  220. app:layout_constraintTop_toBottomOf="@+id/tv_tip2" />
  221. <TextView
  222. android:id="@+id/tv_reason"
  223. android:layout_width="0dp"
  224. android:layout_height="83dp"
  225. android:layout_marginStart="12dp"
  226. android:layout_marginTop="10dp"
  227. android:layout_marginEnd="12dp"
  228. android:background="@drawable/shape_f6f6f6_10dp"
  229. android:padding="10dp"
  230. android:textColor="@color/color_777777"
  231. app:layout_constraintLeft_toLeftOf="parent"
  232. app:layout_constraintRight_toRightOf="parent"
  233. app:layout_constraintTop_toBottomOf="@+id/tv_reason_title2"
  234. tools:text="我要换机构" />
  235. </androidx.constraintlayout.widget.ConstraintLayout>
  236. <TextView
  237. android:visibility="gone"
  238. android:id="@+id/tv_confirm"
  239. android:layout_width="match_parent"
  240. android:layout_height="44dp"
  241. android:layout_marginStart="25dp"
  242. android:layout_marginEnd="25dp"
  243. android:layout_marginBottom="26dp"
  244. android:background="@drawable/shape_login_bt_bg"
  245. android:gravity="center"
  246. android:text="确认解绑"
  247. android:textColor="@color/white"
  248. android:textSize="@dimen/sp_18"
  249. app:layout_constraintBottom_toBottomOf="parent"
  250. app:layout_constraintLeft_toLeftOf="parent"
  251. app:layout_constraintRight_toRightOf="parent" />
  252. </androidx.constraintlayout.widget.ConstraintLayout>