You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

activity_release_vehicle_detail.xml 41KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical"
  7. android:background="@color/background_gray">
  8. <!-- 标题栏 -->
  9. <com.hjq.bar.TitleBar
  10. android:id="@+id/titleBar"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:background="@color/white"
  14. app:leftIcon="@mipmap/back_black"
  15. app:lineVisible="false"
  16. app:title="解除车牌占用详情"
  17. app:titleColor="@color/black" />
  18. <!-- 滚动视图 -->
  19. <ScrollView
  20. android:layout_width="match_parent"
  21. android:layout_height="0dp"
  22. android:layout_weight="1"
  23. android:fillViewport="true">
  24. <LinearLayout
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:orientation="vertical"
  28. android:padding="@dimen/dp_15">
  29. <!-- 提示信息 -->
  30. <LinearLayout
  31. android:layout_width="match_parent"
  32. android:layout_height="wrap_content"
  33. android:background="@drawable/shape_yellow_tip_bg"
  34. android:orientation="vertical"
  35. android:padding="@dimen/dp_15"
  36. android:layout_marginBottom="@dimen/dp_15">
  37. <LinearLayout
  38. android:layout_width="match_parent"
  39. android:layout_height="wrap_content"
  40. android:gravity="center_vertical"
  41. android:orientation="horizontal"
  42. android:layout_marginBottom="@dimen/dp_10">
  43. <ImageView
  44. android:layout_width="@dimen/dp_20"
  45. android:layout_height="@dimen/dp_20"
  46. android:src="@mipmap/tips"
  47. android:layout_marginEnd="@dimen/dp_8" />
  48. <TextView
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:text="提示"
  52. android:textColor="@color/black"
  53. android:textSize="@dimen/sp_16"
  54. android:textStyle="bold" />
  55. </LinearLayout>
  56. <TextView
  57. android:id="@+id/tv_tip_content"
  58. android:layout_width="match_parent"
  59. android:layout_height="wrap_content"
  60. android:text="1、当前车辆已在北京发行方发行,请联系北京发行方010-XXXXXXXX进行处理。\n2、当前用户车辆已办理ETC,请按照注销流程解除车牌占用。注销流程地址:XXXXXXXX。\n3、当前用户车辆存在欠费黑名单,请按照补缴流程解除车牌占用。欠费流程地址:XXXXXX。"
  61. android:textColor="@color/text_gray"
  62. android:textSize="@dimen/sp_14"
  63. android:lineSpacingExtra="@dimen/dp_4" />
  64. </LinearLayout>
  65. <!-- 用户信息 -->
  66. <LinearLayout
  67. android:layout_width="match_parent"
  68. android:layout_height="wrap_content"
  69. android:background="@drawable/shape_white_bg"
  70. android:orientation="vertical"
  71. android:padding="@dimen/dp_15"
  72. android:layout_marginBottom="@dimen/dp_15">
  73. <TextView
  74. android:layout_width="wrap_content"
  75. android:layout_height="wrap_content"
  76. android:text="用户信息"
  77. android:textColor="@color/black"
  78. android:textSize="@dimen/sp_16"
  79. android:textStyle="bold"
  80. android:layout_marginBottom="@dimen/dp_15" />
  81. <!-- 用户类型 -->
  82. <LinearLayout
  83. android:layout_width="match_parent"
  84. android:layout_height="@dimen/dp_50"
  85. android:gravity="center_vertical"
  86. android:orientation="horizontal">
  87. <TextView
  88. android:layout_width="wrap_content"
  89. android:layout_height="wrap_content"
  90. android:text="·证件类型"
  91. android:textColor="@color/black"
  92. android:textSize="@dimen/sp_14" />
  93. <TextView
  94. android:id="@+id/tv_user_type"
  95. android:layout_width="0dp"
  96. android:layout_height="wrap_content"
  97. android:layout_weight="1"
  98. android:layout_marginStart="@dimen/dp_20"
  99. android:text="请选择用户类型"
  100. android:textColor="@color/text_gray"
  101. android:textSize="@dimen/sp_14" />
  102. <ImageView
  103. android:layout_width="@dimen/dp_16"
  104. android:layout_height="@dimen/dp_16"
  105. android:src="@mipmap/ic_next_gray" />
  106. </LinearLayout>
  107. <View
  108. android:layout_width="match_parent"
  109. android:layout_height="1dp"
  110. android:background="@color/divider_gray" />
  111. <!-- 用户名称 -->
  112. <LinearLayout
  113. android:layout_width="match_parent"
  114. android:layout_height="@dimen/dp_50"
  115. android:gravity="center_vertical"
  116. android:orientation="horizontal">
  117. <TextView
  118. android:layout_width="wrap_content"
  119. android:layout_height="wrap_content"
  120. android:text="·用户名称"
  121. android:textColor="@color/black"
  122. android:textSize="@dimen/sp_14" />
  123. <TextView
  124. android:id="@+id/tv_user_name"
  125. android:layout_width="0dp"
  126. android:layout_height="wrap_content"
  127. android:layout_weight="1"
  128. android:layout_marginStart="@dimen/dp_20"
  129. android:text="请输入用户名称"
  130. android:textColor="@color/text_gray"
  131. android:textSize="@dimen/sp_14" />
  132. </LinearLayout>
  133. <View
  134. android:layout_width="match_parent"
  135. android:layout_height="1dp"
  136. android:background="@color/divider_gray" />
  137. <!-- 证件号码 -->
  138. <LinearLayout
  139. android:layout_width="match_parent"
  140. android:layout_height="@dimen/dp_50"
  141. android:gravity="center_vertical"
  142. android:orientation="horizontal">
  143. <TextView
  144. android:layout_width="wrap_content"
  145. android:layout_height="wrap_content"
  146. android:text="·证件号码"
  147. android:textColor="@color/black"
  148. android:textSize="@dimen/sp_14" />
  149. <TextView
  150. android:id="@+id/tv_id_number"
  151. android:layout_width="0dp"
  152. android:layout_height="wrap_content"
  153. android:layout_weight="1"
  154. android:layout_marginStart="@dimen/dp_20"
  155. android:text="请输入证件号码"
  156. android:textColor="@color/text_gray"
  157. android:textSize="@dimen/sp_14" />
  158. </LinearLayout>
  159. <View
  160. android:layout_width="match_parent"
  161. android:layout_height="1dp"
  162. android:background="@color/divider_gray" />
  163. <!-- 手机号码 -->
  164. <LinearLayout
  165. android:layout_width="match_parent"
  166. android:layout_height="@dimen/dp_50"
  167. android:gravity="center_vertical"
  168. android:orientation="horizontal">
  169. <TextView
  170. android:layout_width="wrap_content"
  171. android:layout_height="wrap_content"
  172. android:text="·手机号码"
  173. android:textColor="@color/black"
  174. android:textSize="@dimen/sp_14" />
  175. <TextView
  176. android:id="@+id/tv_mobile"
  177. android:layout_width="0dp"
  178. android:layout_height="wrap_content"
  179. android:layout_weight="1"
  180. android:layout_marginStart="@dimen/dp_20"
  181. android:text="请输入手机号"
  182. android:textColor="@color/text_gray"
  183. android:textSize="@dimen/sp_14" />
  184. </LinearLayout>
  185. </LinearLayout>
  186. <!-- 车辆信息 -->
  187. <LinearLayout
  188. android:layout_width="match_parent"
  189. android:layout_height="wrap_content"
  190. android:background="@drawable/shape_white_bg"
  191. android:orientation="vertical"
  192. android:padding="@dimen/dp_15"
  193. android:layout_marginBottom="@dimen/dp_15">
  194. <TextView
  195. android:layout_width="wrap_content"
  196. android:layout_height="wrap_content"
  197. android:text="车辆信息"
  198. android:textColor="@color/black"
  199. android:textSize="@dimen/sp_16"
  200. android:textStyle="bold"
  201. android:layout_marginBottom="@dimen/dp_15" />
  202. <!-- 车牌号 -->
  203. <LinearLayout
  204. android:layout_width="match_parent"
  205. android:layout_height="wrap_content"
  206. android:orientation="vertical"
  207. android:layout_marginBottom="@dimen/dp_15">
  208. <TextView
  209. android:layout_width="wrap_content"
  210. android:layout_height="wrap_content"
  211. android:text="·车牌号"
  212. android:textColor="@color/black"
  213. android:textSize="@dimen/sp_14"
  214. android:layout_marginBottom="@dimen/dp_8" />
  215. <LinearLayout
  216. android:layout_width="match_parent"
  217. android:layout_height="wrap_content"
  218. android:gravity="center_vertical"
  219. android:orientation="horizontal">
  220. <!-- 省份简称 -->
  221. <TextView
  222. android:id="@+id/tv_plate_prefix"
  223. android:layout_width="@dimen/dp_35"
  224. android:layout_height="@dimen/dp_42"
  225. android:background="@drawable/shape_plate_input_gray"
  226. android:gravity="center"
  227. android:text="贵"
  228. android:textColor="@color/black"
  229. android:textSize="@dimen/sp_18" />
  230. <!-- 分隔线 -->
  231. <View
  232. android:layout_width="@dimen/dp_2"
  233. android:layout_height="1dp"
  234. android:background="@color/divider_gray" />
  235. <!-- 字母 -->
  236. <TextView
  237. android:id="@+id/tv_plate_letter"
  238. android:layout_width="@dimen/dp_35"
  239. android:layout_height="@dimen/dp_42"
  240. android:background="@drawable/shape_plate_input_gray"
  241. android:gravity="center"
  242. android:text="Z"
  243. android:textColor="@color/black"
  244. android:textSize="@dimen/sp_18" />
  245. <!-- 分隔线 -->
  246. <View
  247. android:layout_width="@dimen/dp_2"
  248. android:layout_height="1dp"
  249. android:background="@color/divider_gray" />
  250. <!-- 数字1 -->
  251. <TextView
  252. android:id="@+id/tv_plate_num1"
  253. android:layout_width="@dimen/dp_35"
  254. android:layout_height="@dimen/dp_42"
  255. android:layout_marginStart="@dimen/dp_2"
  256. android:background="@drawable/shape_plate_input_gray"
  257. android:gravity="center"
  258. android:text="1"
  259. android:textColor="@color/black"
  260. android:textSize="@dimen/sp_18" />
  261. <!-- 数字2 -->
  262. <TextView
  263. android:id="@+id/tv_plate_num2"
  264. android:layout_width="@dimen/dp_35"
  265. android:layout_height="@dimen/dp_42"
  266. android:layout_marginStart="@dimen/dp_2"
  267. android:background="@drawable/shape_plate_input_gray"
  268. android:gravity="center"
  269. android:text="0"
  270. android:textColor="@color/black"
  271. android:textSize="@dimen/sp_18" />
  272. <!-- 数字3 -->
  273. <TextView
  274. android:id="@+id/tv_plate_num3"
  275. android:layout_width="@dimen/dp_35"
  276. android:layout_height="@dimen/dp_42"
  277. android:layout_marginStart="@dimen/dp_2"
  278. android:background="@drawable/shape_plate_input_gray"
  279. android:gravity="center"
  280. android:text="0"
  281. android:textColor="@color/black"
  282. android:textSize="@dimen/sp_18" />
  283. <!-- 数字4 -->
  284. <TextView
  285. android:id="@+id/tv_plate_num4"
  286. android:layout_width="@dimen/dp_35"
  287. android:layout_height="@dimen/dp_42"
  288. android:layout_marginStart="@dimen/dp_2"
  289. android:background="@drawable/shape_plate_input_gray"
  290. android:gravity="center"
  291. android:text="2"
  292. android:textColor="@color/black"
  293. android:textSize="@dimen/sp_18" />
  294. <!-- 数字5 -->
  295. <TextView
  296. android:id="@+id/tv_plate_num5"
  297. android:layout_width="@dimen/dp_35"
  298. android:layout_height="@dimen/dp_42"
  299. android:layout_marginStart="@dimen/dp_2"
  300. android:background="@drawable/shape_plate_input_gray"
  301. android:gravity="center"
  302. android:text="2"
  303. android:textColor="@color/black"
  304. android:textSize="@dimen/sp_18" />
  305. <!-- 新能源按钮 -->
  306. <LinearLayout
  307. android:id="@+id/btn_new_energy"
  308. android:layout_width="@dimen/dp_35"
  309. android:layout_height="@dimen/dp_42"
  310. android:layout_marginStart="@dimen/dp_5"
  311. android:background="@drawable/shape_new_energy_btn"
  312. android:gravity="center"
  313. android:orientation="vertical">
  314. <TextView
  315. android:layout_width="wrap_content"
  316. android:layout_height="wrap_content"
  317. android:text="+"
  318. android:textColor="#10D09D"
  319. android:textSize="@dimen/sp_14" />
  320. <TextView
  321. android:layout_width="wrap_content"
  322. android:layout_height="wrap_content"
  323. android:layout_marginTop="@dimen/dp_2"
  324. android:text="新能源"
  325. android:textColor="#10D09D"
  326. android:textSize="@dimen/sp_8" />
  327. </LinearLayout>
  328. </LinearLayout>
  329. </LinearLayout>
  330. <!-- 车牌颜色 -->
  331. <LinearLayout
  332. android:layout_width="match_parent"
  333. android:layout_height="@dimen/dp_50"
  334. android:gravity="center_vertical"
  335. android:orientation="horizontal">
  336. <TextView
  337. android:layout_width="wrap_content"
  338. android:layout_height="wrap_content"
  339. android:text="·车牌颜色"
  340. android:textColor="@color/black"
  341. android:textSize="@dimen/sp_14" />
  342. <TextView
  343. android:id="@+id/tv_plate_color"
  344. android:layout_width="0dp"
  345. android:layout_height="wrap_content"
  346. android:layout_weight="1"
  347. android:layout_marginStart="@dimen/dp_20"
  348. android:text="请选择颜色"
  349. android:textColor="@color/text_gray"
  350. android:textSize="@dimen/sp_14" />
  351. <ImageView
  352. android:layout_width="@dimen/dp_16"
  353. android:layout_height="@dimen/dp_16"
  354. android:src="@mipmap/ic_next_gray" />
  355. </LinearLayout>
  356. <View
  357. android:layout_width="match_parent"
  358. android:layout_height="1dp"
  359. android:background="@color/divider_gray" />
  360. <!-- 车型 -->
  361. <LinearLayout
  362. android:layout_width="match_parent"
  363. android:layout_height="@dimen/dp_50"
  364. android:gravity="center_vertical"
  365. android:orientation="horizontal">
  366. <TextView
  367. android:layout_width="wrap_content"
  368. android:layout_height="wrap_content"
  369. android:text="·车型"
  370. android:textColor="@color/black"
  371. android:textSize="@dimen/sp_14" />
  372. <TextView
  373. android:id="@+id/tv_vehicle_type"
  374. android:layout_width="0dp"
  375. android:layout_height="wrap_content"
  376. android:layout_weight="1"
  377. android:layout_marginStart="@dimen/dp_20"
  378. android:text="请选择车型"
  379. android:textColor="@color/text_gray"
  380. android:textSize="@dimen/sp_14" />
  381. <ImageView
  382. android:layout_width="@dimen/dp_16"
  383. android:layout_height="@dimen/dp_16"
  384. android:src="@mipmap/ic_next_gray" />
  385. </LinearLayout>
  386. <View
  387. android:layout_width="match_parent"
  388. android:layout_height="1dp"
  389. android:background="@color/divider_gray" />
  390. <!-- 车辆所有人 -->
  391. <LinearLayout
  392. android:layout_width="match_parent"
  393. android:layout_height="@dimen/dp_50"
  394. android:gravity="center_vertical"
  395. android:orientation="horizontal">
  396. <TextView
  397. android:layout_width="wrap_content"
  398. android:layout_height="wrap_content"
  399. android:text="·车辆所有人"
  400. android:textColor="@color/black"
  401. android:textSize="@dimen/sp_14" />
  402. <TextView
  403. android:id="@+id/tv_vehicle_owner_name"
  404. android:layout_width="0dp"
  405. android:layout_height="wrap_content"
  406. android:layout_weight="1"
  407. android:layout_marginStart="@dimen/dp_20"
  408. android:text="暂无"
  409. android:textColor="@color/text_gray"
  410. android:textSize="@dimen/sp_14" />
  411. </LinearLayout>
  412. <View
  413. android:layout_width="match_parent"
  414. android:layout_height="1dp"
  415. android:background="@color/divider_gray" />
  416. <!-- 行驶证照片 -->
  417. <LinearLayout
  418. android:layout_width="match_parent"
  419. android:layout_height="wrap_content"
  420. android:orientation="vertical"
  421. android:layout_marginTop="@dimen/dp_10">
  422. <TextView
  423. android:layout_width="wrap_content"
  424. android:layout_height="wrap_content"
  425. android:text="·行驶证照片"
  426. android:textColor="@color/black"
  427. android:textSize="@dimen/sp_14"
  428. android:layout_marginBottom="@dimen/dp_10" />
  429. <LinearLayout
  430. android:layout_width="match_parent"
  431. android:layout_height="wrap_content"
  432. android:orientation="vertical">
  433. <!-- 行驶证正面 -->
  434. <LinearLayout
  435. android:layout_width="match_parent"
  436. android:layout_height="@dimen/dp_220"
  437. android:background="@drawable/home_unm_bg2"
  438. android:orientation="vertical"
  439. android:visibility="visible"
  440. android:layout_marginBottom="@dimen/dp_10">
  441. <ImageView
  442. android:id="@+id/iv_veh_pos_img"
  443. android:layout_width="match_parent"
  444. android:layout_height="0dp"
  445. android:layout_weight="1"
  446. android:src="@mipmap/identity_card1"
  447. android:scaleType="fitCenter" />
  448. <TextView
  449. android:layout_width="match_parent"
  450. android:layout_height="@dimen/dp_30"
  451. android:background="@drawable/home_unm_bg3"
  452. android:gravity="center"
  453. android:text="行驶证正面"
  454. android:textColor="#FFFFFF"
  455. android:textSize="@dimen/sp_12" />
  456. </LinearLayout>
  457. <!-- 行驶证反面 -->
  458. <LinearLayout
  459. android:layout_width="match_parent"
  460. android:layout_height="@dimen/dp_220"
  461. android:background="@drawable/home_unm_bg2"
  462. android:orientation="vertical"
  463. android:visibility="visible">
  464. <ImageView
  465. android:id="@+id/iv_veh_neg_img"
  466. android:layout_width="match_parent"
  467. android:layout_height="0dp"
  468. android:layout_weight="1"
  469. android:src="@mipmap/identity_card1"
  470. android:scaleType="fitCenter" />
  471. <TextView
  472. android:layout_width="match_parent"
  473. android:layout_height="@dimen/dp_30"
  474. android:background="@drawable/home_unm_bg3"
  475. android:gravity="center"
  476. android:text="行驶证反面"
  477. android:textColor="#FFFFFF"
  478. android:textSize="@dimen/sp_12" />
  479. </LinearLayout>
  480. </LinearLayout>
  481. </LinearLayout>
  482. </LinearLayout>
  483. <!-- 卡信息 -->
  484. <LinearLayout
  485. android:layout_width="match_parent"
  486. android:layout_height="wrap_content"
  487. android:background="@drawable/shape_white_bg"
  488. android:orientation="vertical"
  489. android:padding="@dimen/dp_15"
  490. android:layout_marginBottom="@dimen/dp_15">
  491. <TextView
  492. android:layout_width="wrap_content"
  493. android:layout_height="wrap_content"
  494. android:text="卡信息"
  495. android:textColor="@color/black"
  496. android:textSize="@dimen/sp_16"
  497. android:textStyle="bold"
  498. android:layout_marginBottom="@dimen/dp_15" />
  499. <!-- 卡号 -->
  500. <LinearLayout
  501. android:layout_width="match_parent"
  502. android:layout_height="@dimen/dp_50"
  503. android:gravity="center_vertical"
  504. android:orientation="horizontal">
  505. <TextView
  506. android:layout_width="wrap_content"
  507. android:layout_height="wrap_content"
  508. android:text="·卡号"
  509. android:textColor="@color/black"
  510. android:textSize="@dimen/sp_14" />
  511. <TextView
  512. android:id="@+id/tv_card_id"
  513. android:layout_width="0dp"
  514. android:layout_height="wrap_content"
  515. android:layout_weight="1"
  516. android:layout_marginStart="@dimen/dp_20"
  517. android:text="请输入卡号"
  518. android:textColor="@color/text_gray"
  519. android:textSize="@dimen/sp_14" />
  520. </LinearLayout>
  521. <View
  522. android:layout_width="match_parent"
  523. android:layout_height="1dp"
  524. android:background="@color/divider_gray" />
  525. <!-- 卡启用日期 -->
  526. <LinearLayout
  527. android:layout_width="match_parent"
  528. android:layout_height="@dimen/dp_50"
  529. android:gravity="center_vertical"
  530. android:orientation="horizontal">
  531. <TextView
  532. android:layout_width="wrap_content"
  533. android:layout_height="wrap_content"
  534. android:text="·卡启用日期"
  535. android:textColor="@color/black"
  536. android:textSize="@dimen/sp_14" />
  537. <TextView
  538. android:id="@+id/tv_card_enable_time"
  539. android:layout_width="0dp"
  540. android:layout_height="wrap_content"
  541. android:layout_weight="1"
  542. android:layout_marginStart="@dimen/dp_20"
  543. android:text="请输入启用日期"
  544. android:textColor="@color/text_gray"
  545. android:textSize="@dimen/sp_14" />
  546. </LinearLayout>
  547. <View
  548. android:layout_width="match_parent"
  549. android:layout_height="1dp"
  550. android:background="@color/divider_gray" />
  551. <!-- 卡状态 -->
  552. <LinearLayout
  553. android:layout_width="match_parent"
  554. android:layout_height="@dimen/dp_50"
  555. android:gravity="center_vertical"
  556. android:orientation="horizontal">
  557. <TextView
  558. android:layout_width="wrap_content"
  559. android:layout_height="wrap_content"
  560. android:text="·卡状态"
  561. android:textColor="@color/black"
  562. android:textSize="@dimen/sp_14" />
  563. <TextView
  564. android:id="@+id/tv_card_status"
  565. android:layout_width="0dp"
  566. android:layout_height="wrap_content"
  567. android:layout_weight="1"
  568. android:layout_marginStart="@dimen/dp_20"
  569. android:text="请选择卡状态"
  570. android:textColor="@color/text_gray"
  571. android:textSize="@dimen/sp_14" />
  572. <ImageView
  573. android:layout_width="@dimen/dp_16"
  574. android:layout_height="@dimen/dp_16"
  575. android:src="@mipmap/ic_next_gray" />
  576. </LinearLayout>
  577. <View
  578. android:layout_width="match_parent"
  579. android:layout_height="1dp"
  580. android:background="@color/divider_gray" />
  581. <!-- 所属渠道 -->
  582. <LinearLayout
  583. android:layout_width="match_parent"
  584. android:layout_height="@dimen/dp_50"
  585. android:gravity="center_vertical"
  586. android:orientation="horizontal">
  587. <TextView
  588. android:layout_width="wrap_content"
  589. android:layout_height="wrap_content"
  590. android:text="·所属渠道"
  591. android:textColor="@color/black"
  592. android:textSize="@dimen/sp_14" />
  593. <TextView
  594. android:id="@+id/tv_channel"
  595. android:layout_width="0dp"
  596. android:layout_height="wrap_content"
  597. android:layout_weight="1"
  598. android:layout_marginStart="@dimen/dp_20"
  599. android:text="请输入"
  600. android:textColor="@color/text_gray"
  601. android:textSize="@dimen/sp_14" />
  602. </LinearLayout>
  603. </LinearLayout>
  604. <!-- 签信息 -->
  605. <LinearLayout
  606. android:layout_width="match_parent"
  607. android:layout_height="wrap_content"
  608. android:background="@drawable/shape_white_bg"
  609. android:orientation="vertical"
  610. android:padding="@dimen/dp_15"
  611. android:layout_marginBottom="@dimen/dp_15">
  612. <TextView
  613. android:layout_width="wrap_content"
  614. android:layout_height="wrap_content"
  615. android:text="签信息"
  616. android:textColor="@color/black"
  617. android:textSize="@dimen/sp_16"
  618. android:textStyle="bold"
  619. android:layout_marginBottom="@dimen/dp_15" />
  620. <!-- 签号 -->
  621. <LinearLayout
  622. android:layout_width="match_parent"
  623. android:layout_height="@dimen/dp_50"
  624. android:gravity="center_vertical"
  625. android:orientation="horizontal">
  626. <TextView
  627. android:layout_width="wrap_content"
  628. android:layout_height="wrap_content"
  629. android:text="·签号"
  630. android:textColor="@color/black"
  631. android:textSize="@dimen/sp_14" />
  632. <TextView
  633. android:id="@+id/tv_obu_id"
  634. android:layout_width="0dp"
  635. android:layout_height="wrap_content"
  636. android:layout_weight="1"
  637. android:layout_marginStart="@dimen/dp_20"
  638. android:text="请输入签号"
  639. android:textColor="@color/text_gray"
  640. android:textSize="@dimen/sp_14" />
  641. </LinearLayout>
  642. <View
  643. android:layout_width="match_parent"
  644. android:layout_height="1dp"
  645. android:background="@color/divider_gray" />
  646. <!-- 签启用日期 -->
  647. <LinearLayout
  648. android:layout_width="match_parent"
  649. android:layout_height="@dimen/dp_50"
  650. android:gravity="center_vertical"
  651. android:orientation="horizontal">
  652. <TextView
  653. android:layout_width="wrap_content"
  654. android:layout_height="wrap_content"
  655. android:text="·签启用日期"
  656. android:textColor="@color/black"
  657. android:textSize="@dimen/sp_14" />
  658. <TextView
  659. android:id="@+id/tv_obu_enable_time"
  660. android:layout_width="0dp"
  661. android:layout_height="wrap_content"
  662. android:layout_weight="1"
  663. android:layout_marginStart="@dimen/dp_20"
  664. android:text="请输入启用日期"
  665. android:textColor="@color/text_gray"
  666. android:textSize="@dimen/sp_14" />
  667. </LinearLayout>
  668. <View
  669. android:layout_width="match_parent"
  670. android:layout_height="1dp"
  671. android:background="@color/divider_gray" />
  672. <!-- 签状态 -->
  673. <LinearLayout
  674. android:layout_width="match_parent"
  675. android:layout_height="@dimen/dp_50"
  676. android:gravity="center_vertical"
  677. android:orientation="horizontal">
  678. <TextView
  679. android:layout_width="wrap_content"
  680. android:layout_height="wrap_content"
  681. android:text="·签状态"
  682. android:textColor="@color/black"
  683. android:textSize="@dimen/sp_14" />
  684. <TextView
  685. android:id="@+id/tv_obu_status"
  686. android:layout_width="0dp"
  687. android:layout_height="wrap_content"
  688. android:layout_weight="1"
  689. android:layout_marginStart="@dimen/dp_20"
  690. android:text="请选择卡状态"
  691. android:textColor="@color/text_gray"
  692. android:textSize="@dimen/sp_14" />
  693. <ImageView
  694. android:layout_width="@dimen/dp_16"
  695. android:layout_height="@dimen/dp_16"
  696. android:src="@mipmap/ic_next_gray" />
  697. </LinearLayout>
  698. </LinearLayout>
  699. <!-- 黑名单信息 -->
  700. <LinearLayout
  701. android:layout_width="match_parent"
  702. android:layout_height="wrap_content"
  703. android:background="@drawable/shape_white_bg"
  704. android:orientation="vertical"
  705. android:padding="@dimen/dp_15"
  706. android:layout_marginBottom="@dimen/dp_15">
  707. <TextView
  708. android:layout_width="wrap_content"
  709. android:layout_height="wrap_content"
  710. android:text="黑名单信息"
  711. android:textColor="@color/black"
  712. android:textSize="@dimen/sp_16"
  713. android:textStyle="bold"
  714. android:layout_marginBottom="@dimen/dp_15" />
  715. <!-- 卡黑名单 -->
  716. <TextView
  717. android:layout_width="wrap_content"
  718. android:layout_height="wrap_content"
  719. android:text="·卡黑名单"
  720. android:textColor="@color/black"
  721. android:textSize="@dimen/sp_14"
  722. android:textStyle="bold"
  723. android:layout_marginBottom="@dimen/dp_10" />
  724. <LinearLayout
  725. android:id="@+id/ll_card_blacklist_container"
  726. android:layout_width="match_parent"
  727. android:layout_height="wrap_content"
  728. android:orientation="vertical"
  729. android:layout_marginBottom="@dimen/dp_15" />
  730. <View
  731. android:layout_width="match_parent"
  732. android:layout_height="1dp"
  733. android:background="@color/divider_gray"
  734. android:layout_marginBottom="@dimen/dp_15" />
  735. <!-- 签黑名单 -->
  736. <TextView
  737. android:layout_width="wrap_content"
  738. android:layout_height="wrap_content"
  739. android:text="·签黑名单"
  740. android:textColor="@color/black"
  741. android:textSize="@dimen/sp_14"
  742. android:textStyle="bold"
  743. android:layout_marginBottom="@dimen/dp_10" />
  744. <LinearLayout
  745. android:id="@+id/ll_obu_blacklist_container"
  746. android:layout_width="match_parent"
  747. android:layout_height="wrap_content"
  748. android:orientation="vertical" />
  749. </LinearLayout>
  750. </LinearLayout>
  751. </ScrollView>
  752. <!-- 底部按钮 -->
  753. <LinearLayout
  754. android:layout_width="match_parent"
  755. android:layout_height="wrap_content"
  756. android:background="@color/white"
  757. android:orientation="horizontal"
  758. android:padding="@dimen/dp_15">
  759. <Button
  760. android:id="@+id/btn_approve"
  761. android:layout_width="0dp"
  762. android:layout_height="@dimen/dp_45"
  763. android:layout_weight="1"
  764. android:layout_marginEnd="@dimen/dp_8"
  765. android:background="@drawable/shape_green_btn"
  766. android:text="通过"
  767. android:textColor="@color/white"
  768. android:textSize="@dimen/sp_16" />
  769. <Button
  770. android:id="@+id/btn_reject"
  771. android:layout_width="0dp"
  772. android:layout_height="@dimen/dp_45"
  773. android:layout_weight="1"
  774. android:layout_marginHorizontal="@dimen/dp_4"
  775. android:background="@drawable/shape_red_btn"
  776. android:text="不通过"
  777. android:textColor="@color/white"
  778. android:textSize="@dimen/sp_16" />
  779. <Button
  780. android:id="@+id/btn_close"
  781. android:layout_width="0dp"
  782. android:layout_height="@dimen/dp_45"
  783. android:layout_weight="1"
  784. android:layout_marginStart="@dimen/dp_8"
  785. android:background="@drawable/shape_gray_btn"
  786. android:text="关闭"
  787. android:textColor="@color/white"
  788. android:textSize="@dimen/sp_16" />
  789. </LinearLayout>
  790. </LinearLayout>