475e5023d306e1dc412cc36ca145a2c630e0b52e.svn-base 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout 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/white"
  8. tools:context=".ui.vaccination.VnReportDetailForNctActivity">
  9. <com.hjq.bar.TitleBar
  10. android:id="@+id/tb_vndetail_title"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:visibility="visible"
  14. app:title="@string/report_zhuishu" />
  15. <eVVM.apk.widget.ZoomView
  16. android:id="@+id/zv_report"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:layout_below="@+id/tb_vndetail_title">
  20. <LinearLayout
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:orientation="vertical"
  24. android:paddingLeft="10dp"
  25. android:paddingRight="10dp"
  26. android:paddingBottom="40dp">
  27. <RelativeLayout
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"
  30. android:layout_marginLeft="10dp"
  31. android:layout_marginTop="10dp"
  32. android:layout_marginRight="10dp">
  33. <ImageView
  34. android:id="@+id/iv_report_top"
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:src="@mipmap/iv_report_top" />
  38. <TextView
  39. android:id="@+id/vndetail_tv_tt"
  40. android:layout_width="match_parent"
  41. android:layout_height="wrap_content"
  42. android:layout_alignParentRight="true"
  43. android:layout_marginLeft="25dp"
  44. android:layout_marginBottom="3dp"
  45. android:layout_toRightOf="@id/iv_report_top"
  46. android:gravity="center"
  47. android:text="产品追溯报告"
  48. android:textSize="10sp" />
  49. <TextView
  50. android:id="@+id/vndetail_tv_line"
  51. android:layout_width="match_parent"
  52. android:layout_height="10dp"
  53. android:layout_below="@id/vndetail_tv_tt"
  54. android:layout_alignParentRight="true"
  55. android:layout_marginLeft="25dp"
  56. android:layout_marginRight="10dp"
  57. android:layout_toRightOf="@id/iv_report_top"
  58. android:background="#a8996e"
  59. android:text="" />
  60. <TextView
  61. android:id="@+id/vndetail_tv_title"
  62. android:layout_width="wrap_content"
  63. android:layout_height="wrap_content"
  64. android:layout_below="@id/vndetail_tv_tt"
  65. android:layout_alignLeft="@+id/vndetail_tv_line"
  66. android:layout_alignParentRight="true"
  67. android:layout_marginRight="10dp"
  68. android:background="#a8996e"
  69. android:text=" CARGO TRACK REPORT"
  70. android:textColor="#ffffff"
  71. android:textSize="11sp"
  72. android:textStyle="bold" />
  73. <TextView
  74. android:id="@+id/vndetail_tv_vncode"
  75. android:layout_width="wrap_content"
  76. android:layout_height="wrap_content"
  77. android:layout_below="@+id/vndetail_tv_title"
  78. android:layout_alignLeft="@+id/vndetail_tv_title"
  79. android:layout_marginTop="5dp"
  80. android:layout_marginRight="10dp"
  81. android:text=""
  82. android:textColor="@color/gray"
  83. android:textSize="8sp" />
  84. <TextView
  85. android:id="@+id/vndetail_tv_vndate"
  86. android:layout_width="wrap_content"
  87. android:layout_height="wrap_content"
  88. android:layout_below="@+id/vndetail_tv_vncode"
  89. android:layout_alignLeft="@+id/vndetail_tv_title"
  90. android:layout_marginTop="2dp"
  91. android:text=""
  92. android:textColor="@color/gray"
  93. android:textSize="8sp" />
  94. </RelativeLayout>
  95. <LinearLayout
  96. android:layout_width="match_parent"
  97. android:layout_height="wrap_content"
  98. android:orientation="horizontal">
  99. <LinearLayout
  100. android:layout_width="0dp"
  101. android:layout_height="wrap_content"
  102. android:layout_weight="6"
  103. android:orientation="vertical">
  104. <TextView
  105. android:layout_width="wrap_content"
  106. android:layout_height="wrap_content"
  107. android:layout_marginTop="15dp"
  108. android:text="疫苗详情"
  109. android:textSize="8sp"
  110. android:textStyle="bold" />
  111. <LinearLayout
  112. android:layout_width="match_parent"
  113. android:layout_height="wrap_content"
  114. android:layout_marginTop="6dp"
  115. android:orientation="horizontal">
  116. <TextView
  117. android:layout_width="wrap_content"
  118. android:layout_height="wrap_content"
  119. android:text="疫苗名称........."
  120. android:textSize="8sp" />
  121. <TextView
  122. android:id="@+id/vndetail_tv_vnname"
  123. android:layout_width="wrap_content"
  124. android:layout_height="wrap_content"
  125. android:textSize="8dp" />
  126. </LinearLayout>
  127. <LinearLayout
  128. android:layout_width="match_parent"
  129. android:layout_height="wrap_content"
  130. android:layout_marginTop="2dp"
  131. android:orientation="horizontal">
  132. <TextView
  133. android:layout_width="wrap_content"
  134. android:layout_height="wrap_content"
  135. android:text="疫苗规格........."
  136. android:textSize="8sp" />
  137. <TextView
  138. android:id="@+id/vndetail_tv_vnsc"
  139. android:layout_width="wrap_content"
  140. android:layout_height="wrap_content"
  141. android:textSize="8dp" />
  142. </LinearLayout>
  143. <LinearLayout
  144. android:layout_width="match_parent"
  145. android:layout_height="wrap_content"
  146. android:layout_marginTop="2dp"
  147. android:orientation="horizontal">
  148. <TextView
  149. android:layout_width="wrap_content"
  150. android:layout_height="wrap_content"
  151. android:text="生产企业........."
  152. android:textSize="8sp" />
  153. <TextView
  154. android:id="@+id/vndetail_tv_factoryName"
  155. android:layout_width="wrap_content"
  156. android:layout_height="wrap_content"
  157. android:textSize="8dp" />
  158. </LinearLayout>
  159. <LinearLayout
  160. android:layout_width="match_parent"
  161. android:layout_height="wrap_content"
  162. android:layout_marginTop="2dp"
  163. android:orientation="horizontal">
  164. <TextView
  165. android:layout_width="wrap_content"
  166. android:layout_height="wrap_content"
  167. android:text="GMP证书........"
  168. android:textSize="8sp" />
  169. <TextView
  170. android:id="@+id/vndetail_tv_gmpName"
  171. android:layout_width="wrap_content"
  172. android:layout_height="wrap_content"
  173. android:textSize="8sp" />
  174. </LinearLayout>
  175. <LinearLayout
  176. android:layout_width="match_parent"
  177. android:layout_height="wrap_content"
  178. android:layout_marginTop="2dp"
  179. android:orientation="horizontal">
  180. <TextView
  181. android:layout_width="wrap_content"
  182. android:layout_height="wrap_content"
  183. android:text="批签发证书....."
  184. android:textSize="8sp" />
  185. <TextView
  186. android:id="@+id/vndetail_tv_gmpPath"
  187. android:layout_width="wrap_content"
  188. android:layout_height="wrap_content"
  189. android:autoLink="all"
  190. android:text="点击查看"
  191. android:textColor="@color/blue"
  192. android:textSize="8sp" />
  193. </LinearLayout>
  194. <LinearLayout
  195. android:layout_width="match_parent"
  196. android:layout_height="wrap_content"
  197. android:layout_marginTop="2dp"
  198. android:orientation="horizontal">
  199. <TextView
  200. android:layout_width="wrap_content"
  201. android:layout_height="wrap_content"
  202. android:text="生产日期........."
  203. android:textSize="8sp" />
  204. <TextView
  205. android:id="@+id/vndetail_tv_vncreatdate"
  206. android:layout_width="wrap_content"
  207. android:layout_height="wrap_content"
  208. android:textSize="8dp" />
  209. </LinearLayout>
  210. <LinearLayout
  211. android:layout_width="match_parent"
  212. android:layout_height="wrap_content"
  213. android:layout_marginTop="2dp"
  214. android:orientation="horizontal">
  215. <TextView
  216. android:layout_width="wrap_content"
  217. android:layout_height="wrap_content"
  218. android:text="有效期 ............"
  219. android:textSize="8sp" />
  220. <TextView
  221. android:id="@+id/vndetail_tv_vnvalid"
  222. android:layout_width="wrap_content"
  223. android:layout_height="wrap_content"
  224. android:textSize="8dp" />
  225. </LinearLayout>
  226. </LinearLayout>
  227. <LinearLayout
  228. android:layout_width="0dp"
  229. android:layout_height="wrap_content"
  230. android:layout_weight="5"
  231. android:orientation="vertical">
  232. <TextView
  233. android:layout_width="wrap_content"
  234. android:layout_height="wrap_content"
  235. android:layout_marginTop="15dp"
  236. android:text="接种人员"
  237. android:textSize="8sp"
  238. android:textStyle="bold" />
  239. <LinearLayout
  240. android:layout_width="match_parent"
  241. android:layout_height="wrap_content"
  242. android:layout_marginTop="4dp"
  243. android:orientation="horizontal">
  244. <TextView
  245. android:layout_width="wrap_content"
  246. android:layout_height="wrap_content"
  247. android:text="接种单位........"
  248. android:textSize="8sp" />
  249. <TextView
  250. android:id="@+id/vndetail_tv_hospitalName"
  251. android:layout_width="wrap_content"
  252. android:layout_height="wrap_content"
  253. android:textSize="8sp" />
  254. </LinearLayout>
  255. <LinearLayout
  256. android:layout_width="match_parent"
  257. android:layout_height="wrap_content"
  258. android:layout_marginTop="4dp"
  259. android:orientation="horizontal">
  260. <TextView
  261. android:layout_width="wrap_content"
  262. android:layout_height="wrap_content"
  263. android:text="医生姓名........"
  264. android:textSize="8sp" />
  265. <TextView
  266. android:id="@+id/vndetail_tv_doctorName"
  267. android:layout_width="wrap_content"
  268. android:layout_height="wrap_content"
  269. android:textSize="8sp" />
  270. </LinearLayout>
  271. <LinearLayout
  272. android:layout_width="match_parent"
  273. android:layout_height="wrap_content"
  274. android:layout_marginTop="4dp"
  275. android:orientation="horizontal">
  276. <TextView
  277. android:layout_width="wrap_content"
  278. android:layout_height="wrap_content"
  279. android:text="联系方式........"
  280. android:textSize="8sp" />
  281. <TextView
  282. android:id="@+id/vndetail_tv_doctorTelephone"
  283. android:layout_width="wrap_content"
  284. android:layout_height="wrap_content"
  285. android:textSize="8sp" />
  286. </LinearLayout>
  287. </LinearLayout>
  288. </LinearLayout>
  289. <RelativeLayout
  290. android:layout_width="match_parent"
  291. android:layout_height="wrap_content">
  292. <ImageView
  293. android:id="@+id/vndetail_tv_chatImage"
  294. android:layout_width="match_parent"
  295. android:layout_height="wrap_content"
  296. android:layout_marginTop="20dp" />
  297. <TextView
  298. android:layout_width="wrap_content"
  299. android:layout_height="wrap_content"
  300. android:layout_marginTop="20dp"
  301. android:text="检查结果"
  302. android:textSize="10sp"
  303. android:textStyle="bold" />
  304. </RelativeLayout>
  305. <RelativeLayout
  306. android:layout_width="match_parent"
  307. android:layout_height="wrap_content">
  308. <TextView
  309. android:id="@+id/vndetail_tv_typemsg"
  310. android:layout_width="match_parent"
  311. android:layout_height="wrap_content"
  312. android:layout_marginTop="35dp"
  313. android:gravity="center_horizontal"
  314. android:text="没发现报告"
  315. android:textSize="16sp"
  316. android:textStyle="bold" />
  317. <TextView
  318. android:id="@+id/vndetail_tv_chatImage_title"
  319. android:layout_width="wrap_content"
  320. android:layout_height="wrap_content"
  321. android:layout_marginTop="10dp"
  322. android:text="可用性分析"
  323. android:textSize="10sp"
  324. android:textStyle="bold" />
  325. </RelativeLayout>
  326. <TextView
  327. android:id="@+id/coverview"
  328. android:layout_width="match_parent"
  329. android:layout_height="90dp"
  330. android:visibility="gone" />
  331. <LinearLayout
  332. android:layout_width="match_parent"
  333. android:layout_height="wrap_content"
  334. android:layout_marginTop="20dp"
  335. android:orientation="horizontal">
  336. <LinearLayout
  337. android:layout_width="0dp"
  338. android:layout_height="wrap_content"
  339. android:layout_weight="6"
  340. android:orientation="vertical"
  341. android:visibility="gone">
  342. <LinearLayout
  343. android:layout_width="match_parent"
  344. android:layout_height="wrap_content"
  345. android:orientation="horizontal">
  346. <TextView
  347. android:id="@+id/vndetail_tv_othervn1"
  348. android:layout_width="wrap_content"
  349. android:layout_height="wrap_content"
  350. android:text="点击查询......"
  351. android:textSize="8sp" />
  352. <TextView
  353. android:layout_width="wrap_content"
  354. android:layout_height="wrap_content"
  355. android:text="同批次其他疫苗冷链"
  356. android:textSize="8sp" />
  357. </LinearLayout>
  358. <LinearLayout
  359. android:layout_width="match_parent"
  360. android:layout_height="wrap_content"
  361. android:layout_marginTop="4dp"
  362. android:orientation="horizontal">
  363. <TextView
  364. android:id="@+id/vndetail_tv_othervn2"
  365. android:layout_width="wrap_content"
  366. android:layout_height="wrap_content"
  367. android:text="点击查询......"
  368. android:textSize="8sp" />
  369. <TextView
  370. android:layout_width="wrap_content"
  371. android:layout_height="wrap_content"
  372. android:text="同批次其他疫苗流向"
  373. android:textSize="8sp" />
  374. </LinearLayout>
  375. <LinearLayout
  376. android:layout_width="match_parent"
  377. android:layout_height="wrap_content"
  378. android:layout_marginTop="4dp"
  379. android:orientation="horizontal">
  380. <TextView
  381. android:id="@+id/vndetail_tv_othervn3"
  382. android:layout_width="wrap_content"
  383. android:layout_height="wrap_content"
  384. android:text="点击查询......"
  385. android:textSize="8sp" />
  386. <TextView
  387. android:layout_width="wrap_content"
  388. android:layout_height="wrap_content"
  389. android:text="同企业其他疫苗"
  390. android:textSize="8sp" />
  391. </LinearLayout>
  392. </LinearLayout>
  393. <RelativeLayout
  394. android:layout_width="0dp"
  395. android:layout_height="wrap_content"
  396. android:layout_weight="10"
  397. android:orientation="horizontal">
  398. <TextView
  399. android:id="@+id/vndetail_tv_tips"
  400. android:layout_width="wrap_content"
  401. android:layout_height="wrap_content"
  402. android:layout_marginTop="3dp"
  403. android:layout_toLeftOf="@+id/vndetail_iv_tipsimg"
  404. android:text="@string/vndeatil_tips"
  405. android:textColor="@color/gray"
  406. android:textSize="7sp" />
  407. <ImageView
  408. android:id="@+id/vndetail_iv_tipsimg"
  409. android:layout_width="50dp"
  410. android:layout_height="50dp"
  411. android:layout_alignParentRight="true"
  412. android:layout_margin="4dp"
  413. android:src="@mipmap/qr" />
  414. </RelativeLayout>
  415. </LinearLayout>
  416. <LinearLayout
  417. android:layout_width="match_parent"
  418. android:layout_height="wrap_content"
  419. android:layout_marginTop="10dp"
  420. android:orientation="horizontal">
  421. <RelativeLayout
  422. android:layout_width="0dp"
  423. android:layout_height="match_parent"
  424. android:layout_marginRight="-2dp"
  425. android:layout_weight="1"
  426. android:background="@drawable/border_report"
  427. android:orientation="vertical"
  428. android:padding="10dp">
  429. <ImageView
  430. android:layout_width="20dp"
  431. android:layout_height="wrap_content"
  432. android:layout_centerInParent="true"
  433. android:src="@mipmap/dun" />
  434. </RelativeLayout>
  435. <LinearLayout
  436. android:layout_width="0dp"
  437. android:layout_height="wrap_content"
  438. android:layout_weight="6"
  439. android:background="@drawable/border_report"
  440. android:orientation="vertical"
  441. android:padding="5dp">
  442. <TextView
  443. android:layout_width="wrap_content"
  444. android:layout_height="wrap_content"
  445. android:text="免责声明:"
  446. android:textColor="#97885c"
  447. android:textSize="8sp"
  448. android:textStyle="bold" />
  449. <ScrollView
  450. android:layout_width="wrap_content"
  451. android:layout_height="wrap_content">
  452. <TextView
  453. android:id="@+id/vndetail_tv_disclaimer"
  454. android:layout_width="wrap_content"
  455. android:layout_height="wrap_content"
  456. android:text="@string/vndeatil_disclaimer"
  457. android:textColor="#97885c"
  458. android:textSize="8sp" />
  459. </ScrollView>
  460. </LinearLayout>
  461. </LinearLayout>
  462. </LinearLayout>
  463. </eVVM.apk.widget.ZoomView>
  464. <RelativeLayout
  465. android:id="@+id/btn_ll"
  466. android:layout_width="match_parent"
  467. android:layout_height="wrap_content"
  468. android:layout_alignParentBottom="true"
  469. android:layout_centerHorizontal="true"
  470. android:background="@color/white"
  471. android:gravity="center_horizontal"
  472. android:paddingTop="5dp"
  473. android:paddingBottom="5dp">
  474. <Button
  475. android:id="@+id/next_btn_report"
  476. android:layout_width="140dp"
  477. android:layout_height="35dp"
  478. android:layout_toRightOf="@+id/send_btn_report"
  479. android:background="@drawable/small_btn"
  480. android:paddingLeft="20dp"
  481. android:paddingRight="20dp"
  482. android:text="@string/report_confirm"
  483. android:textColor="@color/white"
  484. android:textSize="15.3sp" />
  485. </RelativeLayout>
  486. <ImageButton
  487. android:id="@+id/vndetail_bt_magnifier"
  488. android:layout_width="30dp"
  489. android:layout_height="30dp"
  490. android:layout_alignParentRight="true"
  491. android:layout_alignParentBottom="true"
  492. android:layout_marginRight="10dp"
  493. android:layout_marginBottom="5dp"
  494. android:background="@color/transparent"
  495. android:src="@mipmap/magnifier" />
  496. </RelativeLayout>