2a9d62b4072344ca87e8f937d9ef2f23dcf3272e.svn-base 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  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:orientation="vertical"
  8. tools:context=".ui.toreview.VnToreViewActivity">
  9. <com.hjq.bar.TitleBar
  10. android:id="@+id/tb_vndetail_title"
  11. android:layout_width="match_parent"
  12. android:visibility="gone"
  13. android:layout_height="wrap_content" />
  14. <ScrollView
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content">
  17. <LinearLayout
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:background="@color/white"
  21. android:paddingBottom="30dp"
  22. android:orientation="vertical">
  23. <LinearLayout
  24. android:layout_width="match_parent"
  25. android:layout_marginTop="10dp"
  26. android:layout_height="wrap_content"
  27. android:layout_marginLeft="10dp"
  28. android:layout_marginRight="10dp"
  29. android:orientation="vertical">
  30. <ImageView
  31. android:layout_width="match_parent"
  32. android:layout_height="wrap_content"
  33. android:src="@mipmap/iv_report_top" />
  34. <TextView
  35. android:id="@+id/vndetail_tv_vncode"
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:layout_marginTop="8dp"
  39. android:textSize="12sp" />
  40. <TextView
  41. android:id="@+id/vndetail_tv_vndate"
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:layout_marginTop="8dp"
  45. android:textColor="@color/gray"
  46. android:textSize="12sp" />
  47. <TextView
  48. android:layout_width="match_parent"
  49. android:layout_height="1dp"
  50. android:layout_marginTop="25dp"
  51. android:background="@color/black10" />
  52. <TextView
  53. android:layout_width="wrap_content"
  54. android:layout_height="wrap_content"
  55. android:layout_marginTop="15dp"
  56. android:text="疫苗详情"
  57. android:textSize="17dp"
  58. android:textStyle="bold" />
  59. <LinearLayout
  60. android:orientation="horizontal"
  61. android:layout_marginTop="18dp"
  62. android:layout_width="match_parent"
  63. android:layout_height="wrap_content">
  64. <TextView
  65. android:layout_width="wrap_content"
  66. android:layout_height="wrap_content"
  67. android:layout_marginRight="50dp"
  68. android:text="生产企业" />
  69. <TextView
  70. android:id="@+id/vndetail_tv_factoryName"
  71. android:layout_width="wrap_content"
  72. android:layout_height="wrap_content"/>
  73. </LinearLayout>
  74. <LinearLayout
  75. android:orientation="horizontal"
  76. android:layout_marginTop="8dp"
  77. android:layout_width="match_parent"
  78. android:layout_height="wrap_content">
  79. <TextView
  80. android:layout_width="wrap_content"
  81. android:layout_height="wrap_content"
  82. android:layout_marginRight="50dp"
  83. android:text="GMP证书" />
  84. <TextView
  85. android:id="@+id/vndetail_tv_gmpName"
  86. android:layout_width="wrap_content"
  87. android:layout_height="wrap_content"/>
  88. </LinearLayout>
  89. <LinearLayout
  90. android:orientation="horizontal"
  91. android:layout_marginTop="8dp"
  92. android:layout_width="match_parent"
  93. android:layout_height="wrap_content">
  94. <TextView
  95. android:layout_width="wrap_content"
  96. android:layout_height="wrap_content"
  97. android:layout_marginRight="36dp"
  98. android:text="批签发证书" />
  99. <TextView
  100. android:textColor="@color/blue"
  101. android:id="@+id/vndetail_tv_gmpPath"
  102. android:layout_width="wrap_content"
  103. android:layout_height="wrap_content"
  104. android:autoLink="all"
  105. android:text="点击查看" />
  106. </LinearLayout>
  107. <TextView
  108. android:layout_width="match_parent"
  109. android:layout_height="1dp"
  110. android:layout_marginTop="15dp"
  111. android:background="@color/black10" />
  112. <TextView
  113. android:layout_width="wrap_content"
  114. android:layout_height="wrap_content"
  115. android:layout_marginTop="15dp"
  116. android:text="接种人员"
  117. android:textSize="17dp"
  118. android:textStyle="bold" />
  119. <LinearLayout
  120. android:orientation="horizontal"
  121. android:layout_marginTop="18dp"
  122. android:layout_width="match_parent"
  123. android:layout_height="wrap_content">
  124. <TextView
  125. android:layout_width="wrap_content"
  126. android:layout_height="wrap_content"
  127. android:layout_marginRight="50dp"
  128. android:text="接种单位" />
  129. <TextView
  130. android:id="@+id/vndetail_tv_hospitalName"
  131. android:layout_width="wrap_content"
  132. android:layout_height="wrap_content"/>
  133. </LinearLayout>
  134. <LinearLayout
  135. android:orientation="horizontal"
  136. android:layout_marginTop="10dp"
  137. android:layout_width="match_parent"
  138. android:layout_height="wrap_content">
  139. <TextView
  140. android:layout_width="wrap_content"
  141. android:layout_height="wrap_content"
  142. android:layout_marginRight="50dp"
  143. android:text="医生姓名" />
  144. <TextView
  145. android:id="@+id/vndetail_tv_doctorName"
  146. android:layout_width="wrap_content"
  147. android:layout_height="wrap_content"/>
  148. </LinearLayout>
  149. <LinearLayout
  150. android:orientation="horizontal"
  151. android:layout_marginTop="10dp"
  152. android:layout_width="match_parent"
  153. android:layout_height="wrap_content">
  154. <TextView
  155. android:layout_width="wrap_content"
  156. android:layout_height="wrap_content"
  157. android:layout_marginRight="50dp"
  158. android:text="联系方式" />
  159. <TextView
  160. android:id="@+id/vndetail_tv_doctorTelephone"
  161. android:layout_width="wrap_content"
  162. android:layout_height="wrap_content"/>
  163. </LinearLayout>
  164. <TextView
  165. android:layout_width="match_parent"
  166. android:layout_height="1dp"
  167. android:layout_marginTop="13dp"
  168. android:background="@color/black10" />
  169. <ImageView
  170. android:id="@+id/vndetail_tv_chatImage"
  171. android:layout_width="match_parent"
  172. android:layout_height="wrap_content"
  173. android:layout_marginTop="25dp" />
  174. <Button
  175. android:layout_marginTop="15dp"
  176. android:layout_gravity="center_horizontal"
  177. android:id="@+id/send_btn_report"
  178. android:layout_width="140dp"
  179. android:layout_height="30dp"
  180. android:background="@drawable/small_btn"
  181. android:paddingLeft="20dp"
  182. android:paddingRight="20dp"
  183. android:text="复核"
  184. android:textColor="@color/white"
  185. android:textSize="15.3sp" />
  186. <TextView
  187. android:layout_width="match_parent"
  188. android:layout_height="1dp"
  189. android:layout_marginTop="20dp"
  190. android:background="@color/black10" />
  191. <LinearLayout
  192. android:orientation="horizontal"
  193. android:layout_marginTop="10dp"
  194. android:layout_width="match_parent"
  195. android:layout_height="wrap_content">
  196. <TextView
  197. android:id="@+id/vndetail_tv_othervn1"
  198. android:layout_width="wrap_content"
  199. android:layout_height="wrap_content"
  200. android:layout_marginRight="40dp"
  201. android:text="点击查询" />
  202. <TextView
  203. android:layout_width="wrap_content"
  204. android:layout_height="wrap_content"
  205. android:text="同批次其他疫苗冷链" />
  206. </LinearLayout>
  207. <LinearLayout
  208. android:orientation="horizontal"
  209. android:layout_marginTop="10dp"
  210. android:layout_width="match_parent"
  211. android:layout_height="wrap_content">
  212. <TextView
  213. android:id="@+id/vndetail_tv_othervn2"
  214. android:layout_width="wrap_content"
  215. android:layout_height="wrap_content"
  216. android:layout_marginRight="40dp"
  217. android:text="点击查询" />
  218. <TextView
  219. android:layout_width="wrap_content"
  220. android:layout_height="wrap_content"
  221. android:text="同批次其他疫苗流向" />
  222. </LinearLayout>
  223. <LinearLayout
  224. android:orientation="horizontal"
  225. android:layout_marginTop="10dp"
  226. android:layout_width="match_parent"
  227. android:layout_height="wrap_content">
  228. <TextView
  229. android:id="@+id/vndetail_tv_othervn3"
  230. android:layout_width="wrap_content"
  231. android:layout_height="wrap_content"
  232. android:layout_marginRight="40dp"
  233. android:text="点击查询" />
  234. <TextView
  235. android:layout_width="wrap_content"
  236. android:layout_height="wrap_content"
  237. android:text="同企业其他疫苗" />
  238. </LinearLayout>
  239. <LinearLayout
  240. android:layout_width="match_parent"
  241. android:layout_height="wrap_content"
  242. android:layout_marginTop="25dp"
  243. android:orientation="horizontal">
  244. <ImageView
  245. android:id="@+id/vndetail_iv_tipsimg"
  246. android:layout_width="60dp"
  247. android:layout_height="60dp"
  248. android:src="@mipmap/ic_launcher" />
  249. <TextView
  250. android:id="@+id/vndetail_tv_tips"
  251. android:layout_width="wrap_content"
  252. android:layout_height="wrap_content"
  253. android:layout_marginLeft="30dp"
  254. android:text="@string/vndeatil_tips"
  255. android:textColor="@color/gray"
  256. android:textSize="12sp" />
  257. </LinearLayout>
  258. </LinearLayout>
  259. <LinearLayout
  260. android:layout_marginTop="30dp"
  261. android:layout_width="match_parent"
  262. android:layout_height="wrap_content"
  263. android:paddingLeft="10dp"
  264. android:paddingRight="10dp"
  265. android:background="#F0F5FF"
  266. android:orientation="vertical">
  267. <TextView
  268. android:layout_width="wrap_content"
  269. android:layout_height="wrap_content"
  270. android:layout_marginTop="30dp"
  271. android:text="免责声明:"
  272. android:textSize="15sp"
  273. android:textStyle="bold" />
  274. <TextView
  275. android:id="@+id/vndetail_tv_disclaimer"
  276. android:layout_width="wrap_content"
  277. android:layout_height="wrap_content"
  278. android:layout_marginTop="10dp"
  279. android:layout_marginBottom="20dp"
  280. android:text="@string/vndeatil_disclaimer"
  281. android:textColor="@color/gray"
  282. android:textSize="12sp" />
  283. </LinearLayout>
  284. </LinearLayout>
  285. </ScrollView>
  286. </RelativeLayout>