activity_order_goods_detail.xml 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/white"
  6. android:fitsSystemWindows="true"
  7. android:orientation="vertical" >
  8. <include
  9. android:id="@+id/ll_title"
  10. layout="@layout/fragment_title" />
  11. <ScrollView
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent" >
  14. <LinearLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent"
  17. android:orientation="vertical" >
  18. <RelativeLayout
  19. android:layout_width="match_parent"
  20. android:layout_height="40dp" >
  21. <TextView
  22. android:id="@+id/tv_code_title"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_centerVertical="true"
  26. android:layout_marginLeft="10dp"
  27. android:text="订单编号:"
  28. android:textColor="@color/black" />
  29. <TextView
  30. android:id="@+id/tv_code"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_centerVertical="true"
  34. android:layout_marginLeft="90dp"
  35. android:text=""
  36. android:textColor="@color/black" />
  37. <RelativeLayout
  38. android:layout_width="match_parent"
  39. android:layout_height="1dp"
  40. android:layout_alignParentBottom="true"
  41. android:background="@drawable/approve_id_below_imaginary" >
  42. </RelativeLayout>
  43. </RelativeLayout>
  44. <RelativeLayout
  45. android:layout_width="match_parent"
  46. android:layout_height="40dp" >
  47. <TextView
  48. android:id="@+id/tv1"
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:layout_centerVertical="true"
  52. android:layout_marginLeft="10dp"
  53. android:text="唯一编码:"
  54. android:textColor="@color/black" />
  55. <TextView
  56. android:id="@+id/tv_only_code"
  57. android:layout_width="wrap_content"
  58. android:layout_height="wrap_content"
  59. android:layout_alignParentLeft="true"
  60. android:layout_centerVertical="true"
  61. android:layout_marginLeft="90dp"
  62. android:layout_toLeftOf="@+id/tv_state"
  63. android:gravity="left"
  64. android:text="dqw"
  65. android:textColor="@color/black" />
  66. <TextView
  67. android:id="@+id/tv_state"
  68. android:layout_width="wrap_content"
  69. android:layout_height="wrap_content"
  70. android:layout_alignParentRight="true"
  71. android:layout_centerVertical="true"
  72. android:layout_marginRight="10dp"
  73. android:text="" />
  74. <View
  75. style="@style/thin_fill_line"
  76. android:layout_alignParentBottom="true" />
  77. </RelativeLayout>
  78. <RelativeLayout
  79. android:layout_width="match_parent"
  80. android:layout_height="wrap_content"
  81. android:layout_marginTop="15dp" >
  82. <TextView
  83. android:layout_width="wrap_content"
  84. android:layout_height="wrap_content"
  85. android:layout_marginLeft="10dp"
  86. android:text="明细类型:"
  87. android:textColor="@color/black" />
  88. <TextView
  89. android:id="@+id/tv_detail_type"
  90. android:layout_width="wrap_content"
  91. android:layout_height="wrap_content"
  92. android:layout_marginLeft="90dp"
  93. android:text=""
  94. android:textColor="@color/black" />
  95. </RelativeLayout>
  96. <RelativeLayout
  97. android:layout_width="match_parent"
  98. android:layout_height="wrap_content"
  99. android:layout_marginTop="15dp" >
  100. <TextView
  101. android:layout_width="wrap_content"
  102. android:layout_height="wrap_content"
  103. android:layout_marginLeft="10dp"
  104. android:text="商品编码:"
  105. android:textColor="@color/black" />
  106. <TextView
  107. android:id="@+id/tv_goods_number"
  108. android:layout_width="wrap_content"
  109. android:layout_height="wrap_content"
  110. android:layout_marginLeft="90dp"
  111. android:text=""
  112. android:textColor="@color/black" />
  113. </RelativeLayout>
  114. <RelativeLayout
  115. android:layout_width="match_parent"
  116. android:layout_height="wrap_content"
  117. android:layout_marginTop="15dp" >
  118. <TextView
  119. android:layout_width="wrap_content"
  120. android:layout_height="wrap_content"
  121. android:layout_marginLeft="10dp"
  122. android:text="商品品牌:"
  123. android:textColor="@color/black" />
  124. <TextView
  125. android:id="@+id/tv_goods_brand"
  126. android:layout_width="wrap_content"
  127. android:layout_height="wrap_content"
  128. android:layout_marginLeft="90dp"
  129. android:text=""
  130. android:textColor="@color/black" />
  131. </RelativeLayout>
  132. <RelativeLayout
  133. android:layout_width="match_parent"
  134. android:layout_height="wrap_content"
  135. android:layout_marginTop="15dp" >
  136. <TextView
  137. android:layout_width="wrap_content"
  138. android:layout_height="wrap_content"
  139. android:layout_marginLeft="10dp"
  140. android:text="商品种类:"
  141. android:textColor="@color/black" />
  142. <TextView
  143. android:id="@+id/tv_goods_type"
  144. android:layout_width="wrap_content"
  145. android:layout_height="wrap_content"
  146. android:layout_marginLeft="90dp"
  147. android:text=""
  148. android:textColor="@color/black" />
  149. </RelativeLayout>
  150. <RelativeLayout
  151. android:layout_width="match_parent"
  152. android:layout_height="wrap_content"
  153. android:layout_marginTop="15dp" >
  154. <TextView
  155. android:layout_width="wrap_content"
  156. android:layout_height="wrap_content"
  157. android:layout_marginLeft="10dp"
  158. android:text="订单价格:"
  159. android:textColor="@color/black" />
  160. <TextView
  161. android:id="@+id/tv_order_price"
  162. android:layout_width="wrap_content"
  163. android:layout_height="wrap_content"
  164. android:layout_marginLeft="90dp"
  165. android:text=""
  166. android:textColor="@color/black" />
  167. </RelativeLayout>
  168. <RelativeLayout
  169. android:layout_width="match_parent"
  170. android:layout_height="wrap_content"
  171. android:layout_marginTop="15dp" >
  172. <TextView
  173. android:layout_width="wrap_content"
  174. android:layout_height="wrap_content"
  175. android:layout_marginLeft="10dp"
  176. android:text="订单数量:"
  177. android:textColor="@color/black" />
  178. <TextView
  179. android:id="@+id/tv_order_number"
  180. android:layout_width="wrap_content"
  181. android:layout_height="wrap_content"
  182. android:layout_marginLeft="90dp"
  183. android:text=""
  184. android:textColor="@color/black" />
  185. </RelativeLayout>
  186. <RelativeLayout
  187. android:layout_width="match_parent"
  188. android:layout_height="wrap_content"
  189. android:layout_marginTop="15dp" >
  190. <TextView
  191. android:layout_width="wrap_content"
  192. android:layout_height="wrap_content"
  193. android:layout_marginLeft="10dp"
  194. android:text="箱:"
  195. android:textColor="@color/black" />
  196. <TextView
  197. android:id="@+id/tv_box"
  198. android:layout_width="wrap_content"
  199. android:layout_height="wrap_content"
  200. android:layout_marginLeft="90dp"
  201. android:text=""
  202. android:textColor="@color/black" />
  203. </RelativeLayout>
  204. <RelativeLayout
  205. android:layout_width="match_parent"
  206. android:layout_height="wrap_content"
  207. android:layout_marginTop="15dp" >
  208. <TextView
  209. android:layout_width="wrap_content"
  210. android:layout_height="wrap_content"
  211. android:layout_marginLeft="10dp"
  212. android:text="片/个:"
  213. android:textColor="@color/black" />
  214. <TextView
  215. android:id="@+id/tv_slice"
  216. android:layout_width="wrap_content"
  217. android:layout_height="wrap_content"
  218. android:layout_marginLeft="90dp"
  219. android:text=""
  220. android:textColor="@color/black" />
  221. </RelativeLayout>
  222. <RelativeLayout
  223. android:layout_width="match_parent"
  224. android:layout_height="wrap_content"
  225. android:layout_marginTop="15dp" >
  226. <TextView
  227. android:layout_width="wrap_content"
  228. android:layout_height="wrap_content"
  229. android:layout_marginLeft="10dp"
  230. android:text="计量单位:"
  231. android:textColor="@color/black" />
  232. <TextView
  233. android:id="@+id/tv_company"
  234. android:layout_width="wrap_content"
  235. android:layout_height="wrap_content"
  236. android:layout_marginLeft="90dp"
  237. android:text=""
  238. android:textColor="@color/black" />
  239. </RelativeLayout>
  240. <RelativeLayout
  241. android:layout_width="match_parent"
  242. android:layout_height="wrap_content"
  243. android:layout_marginTop="15dp" >
  244. <TextView
  245. android:layout_width="wrap_content"
  246. android:layout_height="wrap_content"
  247. android:layout_marginLeft="10dp"
  248. android:text="商品规格:"
  249. android:textColor="@color/black" />
  250. <TextView
  251. android:id="@+id/tv_specification"
  252. android:layout_width="wrap_content"
  253. android:layout_height="wrap_content"
  254. android:layout_marginLeft="90dp"
  255. android:text=""
  256. android:textColor="@color/black" />
  257. </RelativeLayout>
  258. <RelativeLayout
  259. android:layout_width="match_parent"
  260. android:layout_height="wrap_content"
  261. android:layout_marginTop="15dp" >
  262. <TextView
  263. android:layout_width="wrap_content"
  264. android:layout_height="wrap_content"
  265. android:layout_marginLeft="10dp"
  266. android:text="库区编码:"
  267. android:textColor="@color/black" />
  268. <TextView
  269. android:id="@+id/tv_area_code"
  270. android:layout_width="wrap_content"
  271. android:layout_height="wrap_content"
  272. android:layout_marginLeft="90dp"
  273. android:text=""
  274. android:textColor="@color/black" />
  275. </RelativeLayout>
  276. <RelativeLayout
  277. android:layout_width="match_parent"
  278. android:layout_height="wrap_content"
  279. android:layout_marginTop="15dp" >
  280. <TextView
  281. android:layout_width="wrap_content"
  282. android:layout_height="wrap_content"
  283. android:layout_marginLeft="10dp"
  284. android:text="库区名称:"
  285. android:textColor="@color/black" />
  286. <TextView
  287. android:id="@+id/tv_area_name"
  288. android:layout_width="wrap_content"
  289. android:layout_height="wrap_content"
  290. android:layout_marginLeft="90dp"
  291. android:text=""
  292. android:textColor="@color/black" />
  293. </RelativeLayout>
  294. <RelativeLayout
  295. android:layout_width="match_parent"
  296. android:layout_height="wrap_content"
  297. android:layout_marginTop="15dp" >
  298. <TextView
  299. android:layout_width="wrap_content"
  300. android:layout_height="wrap_content"
  301. android:layout_marginLeft="10dp"
  302. android:text="仓 位 号:"
  303. android:textColor="@color/black" />
  304. <TextView
  305. android:id="@+id/tv_position_number"
  306. android:layout_width="wrap_content"
  307. android:layout_height="wrap_content"
  308. android:layout_marginLeft="90dp"
  309. android:text=""
  310. android:textColor="@color/black" />
  311. </RelativeLayout>
  312. <RelativeLayout
  313. android:layout_width="match_parent"
  314. android:layout_height="wrap_content"
  315. android:layout_marginTop="15dp" >
  316. <TextView
  317. android:layout_width="wrap_content"
  318. android:layout_height="wrap_content"
  319. android:layout_marginLeft="10dp"
  320. android:text="商品等级:"
  321. android:textColor="@color/black" />
  322. <TextView
  323. android:id="@+id/tv_grade"
  324. android:layout_width="wrap_content"
  325. android:layout_height="wrap_content"
  326. android:layout_marginLeft="90dp"
  327. android:text=""
  328. android:textColor="@color/black" />
  329. </RelativeLayout>
  330. <RelativeLayout
  331. android:layout_width="match_parent"
  332. android:layout_height="wrap_content"
  333. android:layout_marginTop="15dp" >
  334. <TextView
  335. android:layout_width="wrap_content"
  336. android:layout_height="wrap_content"
  337. android:layout_marginLeft="10dp"
  338. android:text="色 号:"
  339. android:textColor="@color/black" />
  340. <TextView
  341. android:id="@+id/tv_color_number"
  342. android:layout_width="wrap_content"
  343. android:layout_height="wrap_content"
  344. android:layout_marginLeft="90dp"
  345. android:text=""
  346. android:textColor="@color/black" />
  347. </RelativeLayout>
  348. <RelativeLayout
  349. android:layout_width="match_parent"
  350. android:layout_height="wrap_content"
  351. android:layout_marginTop="15dp" >
  352. <TextView
  353. android:layout_width="wrap_content"
  354. android:layout_height="wrap_content"
  355. android:layout_marginLeft="10dp"
  356. android:text="转销售数量:"
  357. android:textColor="@color/black" />
  358. <TextView
  359. android:id="@+id/tv_to_order_number"
  360. android:layout_width="wrap_content"
  361. android:layout_height="wrap_content"
  362. android:layout_marginLeft="90dp"
  363. android:text=""
  364. android:textColor="@color/black" />
  365. </RelativeLayout>
  366. <RelativeLayout
  367. android:layout_width="match_parent"
  368. android:layout_height="wrap_content"
  369. android:layout_marginTop="15dp" >
  370. <TextView
  371. android:layout_width="wrap_content"
  372. android:layout_height="wrap_content"
  373. android:layout_marginLeft="10dp"
  374. android:text="采购请购量:"
  375. android:textColor="@color/black" />
  376. <TextView
  377. android:id="@+id/tv_purchase_amount"
  378. android:layout_width="wrap_content"
  379. android:layout_height="wrap_content"
  380. android:layout_marginLeft="90dp"
  381. android:text=""
  382. android:textColor="@color/black" />
  383. </RelativeLayout>
  384. <RelativeLayout
  385. android:layout_width="match_parent"
  386. android:layout_height="wrap_content"
  387. android:layout_marginTop="15dp" >
  388. <TextView
  389. android:layout_width="wrap_content"
  390. android:layout_height="wrap_content"
  391. android:layout_marginLeft="10dp"
  392. android:text="占库数量:"
  393. android:textColor="@color/black" />
  394. <TextView
  395. android:id="@+id/tv_occupancy_number"
  396. android:layout_width="wrap_content"
  397. android:layout_height="wrap_content"
  398. android:layout_marginLeft="90dp"
  399. android:text=""
  400. android:textColor="@color/black" />
  401. </RelativeLayout>
  402. <RelativeLayout
  403. android:layout_width="match_parent"
  404. android:layout_height="wrap_content"
  405. android:layout_marginTop="15dp" >
  406. <TextView
  407. android:layout_width="wrap_content"
  408. android:layout_height="wrap_content"
  409. android:layout_marginLeft="10dp"
  410. android:text="流通方式:"
  411. android:textColor="@color/black" />
  412. <TextView
  413. android:id="@+id/tv_circulation_mode"
  414. android:layout_width="wrap_content"
  415. android:layout_height="wrap_content"
  416. android:layout_marginLeft="90dp"
  417. android:text=""
  418. android:textColor="@color/black" />
  419. </RelativeLayout>
  420. <RelativeLayout
  421. android:layout_width="match_parent"
  422. android:layout_height="wrap_content"
  423. android:layout_marginTop="15dp" >
  424. <TextView
  425. android:layout_width="wrap_content"
  426. android:layout_height="wrap_content"
  427. android:layout_marginLeft="10dp"
  428. android:text="包 装:"
  429. android:textColor="@color/black" />
  430. <TextView
  431. android:id="@+id/tv_package"
  432. android:layout_width="wrap_content"
  433. android:layout_height="wrap_content"
  434. android:layout_marginLeft="90dp"
  435. android:text=""
  436. android:textColor="@color/black" />
  437. </RelativeLayout>
  438. <RelativeLayout
  439. android:layout_width="match_parent"
  440. android:layout_height="wrap_content"
  441. android:layout_marginTop="15dp" >
  442. <TextView
  443. android:layout_width="wrap_content"
  444. android:layout_height="wrap_content"
  445. android:layout_marginLeft="10dp"
  446. android:text="单位面积:"
  447. android:textColor="@color/black" />
  448. <TextView
  449. android:id="@+id/tv_acreage"
  450. android:layout_width="wrap_content"
  451. android:layout_height="wrap_content"
  452. android:layout_marginLeft="90dp"
  453. android:text=""
  454. android:textColor="@color/black" />
  455. </RelativeLayout>
  456. <RelativeLayout
  457. android:layout_width="match_parent"
  458. android:layout_height="wrap_content"
  459. android:layout_marginTop="15dp" >
  460. <TextView
  461. android:layout_width="wrap_content"
  462. android:layout_height="wrap_content"
  463. android:layout_marginLeft="10dp"
  464. android:text="订单面积:"
  465. android:textColor="@color/black" />
  466. <TextView
  467. android:id="@+id/tv_order_acreage"
  468. android:layout_width="wrap_content"
  469. android:layout_height="wrap_content"
  470. android:layout_marginLeft="90dp"
  471. android:text=""
  472. android:textColor="@color/black" />
  473. </RelativeLayout>
  474. <RelativeLayout
  475. android:layout_width="match_parent"
  476. android:layout_height="wrap_content"
  477. android:layout_marginTop="15dp" >
  478. <TextView
  479. android:layout_width="wrap_content"
  480. android:layout_height="wrap_content"
  481. android:layout_marginLeft="10dp"
  482. android:text="单位体积:"
  483. android:textColor="@color/black" />
  484. <TextView
  485. android:id="@+id/tv_unit_volume"
  486. android:layout_width="wrap_content"
  487. android:layout_height="wrap_content"
  488. android:layout_marginLeft="90dp"
  489. android:text=""
  490. android:textColor="@color/black" />
  491. </RelativeLayout>
  492. <RelativeLayout
  493. android:layout_width="match_parent"
  494. android:layout_height="wrap_content"
  495. android:layout_marginTop="15dp" >
  496. <TextView
  497. android:layout_width="wrap_content"
  498. android:layout_height="wrap_content"
  499. android:layout_marginLeft="10dp"
  500. android:text="订单体积:"
  501. android:textColor="@color/black" />
  502. <TextView
  503. android:id="@+id/tv_order_volume"
  504. android:layout_width="wrap_content"
  505. android:layout_height="wrap_content"
  506. android:layout_marginLeft="90dp"
  507. android:text=""
  508. android:textColor="@color/black" />
  509. </RelativeLayout>
  510. <RelativeLayout
  511. android:layout_width="match_parent"
  512. android:layout_height="wrap_content"
  513. android:layout_marginTop="15dp" >
  514. <TextView
  515. android:layout_width="wrap_content"
  516. android:layout_height="wrap_content"
  517. android:layout_marginLeft="10dp"
  518. android:text="标 价:"
  519. android:textColor="@color/black" />
  520. <TextView
  521. android:id="@+id/tv_price"
  522. android:layout_width="wrap_content"
  523. android:layout_height="wrap_content"
  524. android:layout_marginLeft="90dp"
  525. android:text=""
  526. android:textColor="@color/black" />
  527. </RelativeLayout>
  528. <RelativeLayout
  529. android:layout_width="match_parent"
  530. android:layout_height="wrap_content"
  531. android:layout_marginTop="15dp" >
  532. <TextView
  533. android:layout_width="wrap_content"
  534. android:layout_height="wrap_content"
  535. android:layout_marginLeft="10dp"
  536. android:text="折 扣:"
  537. android:textColor="@color/black" />
  538. <TextView
  539. android:id="@+id/tv_discount"
  540. android:layout_width="wrap_content"
  541. android:layout_height="wrap_content"
  542. android:layout_marginLeft="90dp"
  543. android:text=""
  544. android:textColor="@color/black" />
  545. </RelativeLayout>
  546. <RelativeLayout
  547. android:layout_width="match_parent"
  548. android:layout_height="wrap_content"
  549. android:layout_marginTop="15dp" >
  550. <TextView
  551. android:layout_width="wrap_content"
  552. android:layout_height="wrap_content"
  553. android:layout_marginLeft="10dp"
  554. android:text="使用位置:"
  555. android:textColor="@color/black" />
  556. <TextView
  557. android:id="@+id/tv_position"
  558. android:layout_width="wrap_content"
  559. android:layout_height="wrap_content"
  560. android:layout_marginLeft="90dp"
  561. android:text=""
  562. android:textColor="@color/black" />
  563. </RelativeLayout>
  564. <RelativeLayout
  565. android:layout_width="match_parent"
  566. android:layout_height="wrap_content"
  567. android:layout_marginTop="15dp" >
  568. <TextView
  569. android:layout_width="wrap_content"
  570. android:layout_height="wrap_content"
  571. android:layout_marginLeft="10dp"
  572. android:text="供 应 商:"
  573. android:textColor="@color/black" />
  574. <TextView
  575. android:id="@+id/tv_supplier"
  576. android:layout_width="wrap_content"
  577. android:layout_height="wrap_content"
  578. android:layout_marginLeft="90dp"
  579. android:text=""
  580. android:textColor="@color/black" />
  581. </RelativeLayout>
  582. <RelativeLayout
  583. android:layout_width="match_parent"
  584. android:layout_height="wrap_content"
  585. android:layout_marginTop="15dp" >
  586. <TextView
  587. android:layout_width="wrap_content"
  588. android:layout_height="wrap_content"
  589. android:layout_marginLeft="10dp"
  590. android:text="商品品种:"
  591. android:textColor="@color/black" />
  592. <TextView
  593. android:id="@+id/tv_commodity_variety"
  594. android:layout_width="wrap_content"
  595. android:layout_height="wrap_content"
  596. android:layout_marginLeft="90dp"
  597. android:text=""
  598. android:textColor="@color/black" />
  599. </RelativeLayout>
  600. <RelativeLayout
  601. android:layout_width="match_parent"
  602. android:layout_height="wrap_content"
  603. android:layout_marginTop="15dp" >
  604. <TextView
  605. android:layout_width="wrap_content"
  606. android:layout_height="wrap_content"
  607. android:layout_marginLeft="10dp"
  608. android:text="商品系列:"
  609. android:textColor="@color/black" />
  610. <TextView
  611. android:id="@+id/tv_commodity_series"
  612. android:layout_width="wrap_content"
  613. android:layout_height="wrap_content"
  614. android:layout_marginLeft="90dp"
  615. android:text=""
  616. android:textColor="@color/black" />
  617. </RelativeLayout>
  618. <RelativeLayout
  619. android:layout_width="match_parent"
  620. android:layout_height="wrap_content"
  621. android:layout_marginTop="15dp" >
  622. <TextView
  623. android:layout_width="wrap_content"
  624. android:layout_height="wrap_content"
  625. android:layout_marginLeft="10dp"
  626. android:text="商品名称:"
  627. android:textColor="@color/black" />
  628. <TextView
  629. android:id="@+id/tv_commodity_name"
  630. android:layout_width="wrap_content"
  631. android:layout_height="wrap_content"
  632. android:layout_marginLeft="90dp"
  633. android:text=""
  634. android:textColor="@color/black" />
  635. </RelativeLayout>
  636. <RelativeLayout
  637. android:layout_width="match_parent"
  638. android:layout_height="wrap_content"
  639. android:layout_marginTop="15dp" >
  640. <TextView
  641. android:layout_width="wrap_content"
  642. android:layout_height="wrap_content"
  643. android:layout_marginLeft="10dp"
  644. android:text="扩展属性:"
  645. android:textColor="@color/black" />
  646. <TextView
  647. android:id="@+id/tv_expand_attribute"
  648. android:layout_width="wrap_content"
  649. android:layout_height="wrap_content"
  650. android:layout_marginLeft="90dp"
  651. android:text=""
  652. android:textColor="@color/black" />
  653. </RelativeLayout>
  654. <RelativeLayout
  655. android:layout_width="match_parent"
  656. android:layout_height="wrap_content"
  657. android:layout_marginTop="15dp" >
  658. <TextView
  659. android:layout_width="wrap_content"
  660. android:layout_height="wrap_content"
  661. android:layout_marginLeft="10dp"
  662. android:text="扩展属性二:"
  663. android:textColor="@color/black" />
  664. <TextView
  665. android:id="@+id/tv_expand_attribute2"
  666. android:layout_width="wrap_content"
  667. android:layout_height="wrap_content"
  668. android:layout_marginLeft="90dp"
  669. android:text=""
  670. android:textColor="@color/black" />
  671. </RelativeLayout>
  672. <RelativeLayout
  673. android:layout_width="match_parent"
  674. android:layout_height="wrap_content"
  675. android:layout_marginTop="15dp" >
  676. <TextView
  677. android:layout_width="wrap_content"
  678. android:layout_height="wrap_content"
  679. android:layout_marginLeft="10dp"
  680. android:text="商品备注:"
  681. android:textColor="@color/black" />
  682. <TextView
  683. android:id="@+id/tv_goods_remarks"
  684. android:layout_width="wrap_content"
  685. android:layout_height="wrap_content"
  686. android:layout_marginLeft="90dp"
  687. android:text=""
  688. android:textColor="@color/black" />
  689. </RelativeLayout>
  690. <RelativeLayout
  691. android:layout_width="match_parent"
  692. android:layout_height="wrap_content"
  693. android:layout_marginBottom="15dp"
  694. android:layout_marginTop="15dp" >
  695. <TextView
  696. android:layout_width="wrap_content"
  697. android:layout_height="wrap_content"
  698. android:layout_marginLeft="10dp"
  699. android:text="备 注:"
  700. android:textColor="@color/black" />
  701. <TextView
  702. android:id="@+id/tv_remarks"
  703. android:layout_width="wrap_content"
  704. android:layout_height="wrap_content"
  705. android:layout_marginLeft="90dp"
  706. android:text=""
  707. android:textColor="@color/black" />
  708. </RelativeLayout>
  709. </LinearLayout>
  710. </ScrollView>
  711. </LinearLayout>