item_enter_list.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/submitorderlin"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:orientation="vertical" >
  7. <RelativeLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_gravity="center_vertical"
  11. android:layout_marginBottom="13dp"
  12. android:layout_marginTop="13dp" >
  13. <CheckBox
  14. android:id="@+id/inventoryCheck"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_marginLeft="10dp"
  18. android:button="@drawable/checkbox"
  19. android:checked="false"
  20. android:focusable="false"
  21. android:focusableInTouchMode="false"
  22. android:gravity="center" />
  23. <TextView
  24. android:id="@+id/tv_productName"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_marginLeft="@dimen/tv_layout_margin_10"
  28. android:layout_toRightOf="@id/inventoryCheck"
  29. android:gravity="center"
  30. android:textColor="@color/black"
  31. android:textSize="@dimen/textsize_14" />
  32. </RelativeLayout>
  33. <View
  34. android:layout_width="match_parent"
  35. android:layout_height="@dimen/view_layout_height_1"
  36. android:background="@drawable/approve_id_below_imaginary" />
  37. <LinearLayout
  38. android:layout_width="match_parent"
  39. android:layout_height="wrap_content"
  40. android:layout_weight="1"
  41. android:orientation="vertical" >
  42. <LinearLayout
  43. android:layout_width="match_parent"
  44. android:layout_height="wrap_content"
  45. android:orientation="horizontal" >
  46. <LinearLayout
  47. android:layout_width="0dp"
  48. android:layout_height="wrap_content"
  49. android:layout_weight="1" >
  50. <TextView
  51. android:layout_width="wrap_content"
  52. android:layout_height="@dimen/tv_layout_height_40"
  53. android:layout_marginLeft="@dimen/tv_layout_marginLeft_15"
  54. android:gravity="center"
  55. android:text="商品编码:"
  56. android:textColor="@color/darkgray"
  57. android:textSize="13sp" />
  58. <TextView
  59. android:id="@+id/tv_goods_code"
  60. android:layout_width="wrap_content"
  61. android:layout_height="wrap_content"
  62. android:layout_gravity="center_vertical"
  63. android:ellipsize="end"
  64. android:maxEms="8"
  65. android:paddingLeft="8dp"
  66. android:singleLine="true"
  67. android:textColor="#000"
  68. android:textSize="13sp" />
  69. </LinearLayout>
  70. <LinearLayout
  71. android:layout_width="0dp"
  72. android:layout_height="wrap_content"
  73. android:layout_weight="1" >
  74. <TextView
  75. android:id="@+id/tv_title_only_code"
  76. android:layout_width="wrap_content"
  77. android:layout_height="@dimen/tv_layout_height_40"
  78. android:gravity="center"
  79. android:text="唯一编码:"
  80. android:textColor="@color/darkgray"
  81. android:textSize="13sp" />
  82. <TextView
  83. android:id="@+id/tv_onlyCode"
  84. android:layout_width="wrap_content"
  85. android:layout_height="wrap_content"
  86. android:layout_gravity="center_vertical"
  87. android:ellipsize="end"
  88. android:maxEms="12"
  89. android:paddingLeft="8dp"
  90. android:singleLine="true"
  91. android:textColor="#000"
  92. android:textSize="13sp" />
  93. </LinearLayout>
  94. </LinearLayout>
  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="1" >
  103. <TextView
  104. android:layout_width="wrap_content"
  105. android:layout_height="@dimen/tv_layout_height_40"
  106. android:layout_marginLeft="@dimen/tv_layout_marginLeft_15"
  107. android:gravity="center"
  108. android:text="品牌:"
  109. android:textColor="@color/darkgray"
  110. android:textSize="13sp" />
  111. <TextView
  112. android:id="@+id/tv_BrandName"
  113. android:layout_width="wrap_content"
  114. android:layout_height="wrap_content"
  115. android:layout_gravity="center_vertical"
  116. android:ellipsize="end"
  117. android:maxEms="8"
  118. android:paddingLeft="8dp"
  119. android:singleLine="true"
  120. android:textColor="#000"
  121. android:textSize="13sp" />
  122. </LinearLayout>
  123. <LinearLayout
  124. android:layout_width="0dp"
  125. android:layout_height="wrap_content"
  126. android:layout_weight="1" >
  127. <TextView
  128. android:layout_width="wrap_content"
  129. android:layout_height="@dimen/tv_layout_height_40"
  130. android:gravity="center"
  131. android:text="种类:"
  132. android:textColor="@color/darkgray"
  133. android:textSize="13sp" />
  134. <TextView
  135. android:id="@+id/tv_KindName"
  136. android:layout_width="wrap_content"
  137. android:layout_height="wrap_content"
  138. android:layout_gravity="center_vertical"
  139. android:ellipsize="end"
  140. android:maxEms="12"
  141. android:paddingLeft="8dp"
  142. android:singleLine="true"
  143. android:textColor="#000"
  144. android:textSize="13sp" />
  145. </LinearLayout>
  146. </LinearLayout>
  147. <LinearLayout
  148. android:layout_width="match_parent"
  149. android:layout_height="wrap_content"
  150. android:orientation="horizontal" >
  151. <LinearLayout
  152. android:layout_width="0dp"
  153. android:layout_height="wrap_content"
  154. android:layout_weight="1" >
  155. <TextView
  156. android:layout_width="wrap_content"
  157. android:layout_height="@dimen/tv_layout_height_40"
  158. android:layout_marginLeft="@dimen/tv_layout_marginLeft_15"
  159. android:gravity="center"
  160. android:text="品种:"
  161. android:textColor="@color/darkgray"
  162. android:textSize="13sp" />
  163. <TextView
  164. android:id="@+id/tv_VarietyName"
  165. android:layout_width="wrap_content"
  166. android:layout_height="wrap_content"
  167. android:layout_gravity="center_vertical"
  168. android:ellipsize="end"
  169. android:maxEms="8"
  170. android:paddingLeft="8dp"
  171. android:singleLine="true"
  172. android:textColor="#000"
  173. android:textSize="13sp" />
  174. </LinearLayout>
  175. <LinearLayout
  176. android:layout_width="0dp"
  177. android:layout_height="wrap_content"
  178. android:layout_weight="1" >
  179. <TextView
  180. android:layout_width="wrap_content"
  181. android:layout_height="@dimen/tv_layout_height_40"
  182. android:gravity="center"
  183. android:text="系列:"
  184. android:textColor="@color/darkgray"
  185. android:textSize="13sp" />
  186. <TextView
  187. android:id="@+id/tv_SeriesName"
  188. android:layout_width="wrap_content"
  189. android:layout_height="wrap_content"
  190. android:layout_gravity="center_vertical"
  191. android:ellipsize="end"
  192. android:maxEms="12"
  193. android:paddingLeft="8dp"
  194. android:singleLine="true"
  195. android:textColor="#000"
  196. android:textSize="13sp" />
  197. </LinearLayout>
  198. </LinearLayout>
  199. <LinearLayout
  200. android:layout_width="match_parent"
  201. android:layout_height="wrap_content"
  202. android:orientation="horizontal" >
  203. <LinearLayout
  204. android:layout_width="0dp"
  205. android:layout_height="wrap_content"
  206. android:layout_weight="1"
  207. android:orientation="horizontal" >
  208. <TextView
  209. android:layout_marginLeft="@dimen/tv_layout_marginLeft_15"
  210. android:layout_width="wrap_content"
  211. android:layout_height="@dimen/tv_layout_height_40"
  212. android:gravity="center"
  213. android:text="规格:"
  214. android:textColor="@color/darkgray"
  215. android:textSize="13sp" />
  216. <TextView
  217. android:id="@+id/tvSpecification"
  218. android:layout_width="wrap_content"
  219. android:layout_height="wrap_content"
  220. android:layout_gravity="center_vertical"
  221. android:ellipsize="end"
  222. android:maxEms="8"
  223. android:paddingLeft="8dp"
  224. android:singleLine="true"
  225. android:textColor="#000"
  226. android:textSize="13sp" />
  227. </LinearLayout>
  228. </LinearLayout>
  229. <View
  230. android:layout_width="match_parent"
  231. android:layout_height="1dp"
  232. android:background="@color/EBEBEB" />
  233. </LinearLayout>
  234. </LinearLayout>