collect_item.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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="wrap_content"
  5. android:orientation="vertical"
  6. android:padding="8dp"
  7. android:background="@color/background"
  8. android:id="@+id/collect">
  9. <LinearLayout
  10. android:layout_height="15dp"
  11. android:layout_width="fill_parent"
  12. android:orientation="horizontal">
  13. <TextView
  14. android:text="采集的工号:"
  15. android:layout_height="wrap_content"
  16. android:layout_width="wrap_content"
  17. android:textSize="@dimen/textsize_12"
  18. android:textColor="@color/white"/>
  19. <TextView
  20. android:layout_height="wrap_content"
  21. android:layout_width="wrap_content"
  22. android:id="@+id/ItemText1"
  23. android:layout_marginLeft="8dp"
  24. android:textSize="@dimen/textsize_12"
  25. android:textColor="@color/white"/>
  26. </LinearLayout>
  27. <LinearLayout
  28. android:layout_height="15dp"
  29. android:layout_width="fill_parent"
  30. android:orientation="horizontal">
  31. <TextView
  32. android:text="产品编码:"
  33. android:layout_height="wrap_content"
  34. android:layout_width="wrap_content"
  35. android:textSize="@dimen/textsize_12"
  36. android:textColor="@color/white"/>
  37. <TextView
  38. android:layout_height="wrap_content"
  39. android:layout_width="wrap_content"
  40. android:layout_marginLeft="8dp"
  41. android:id="@+id/ItemText2"
  42. android:textSize="@dimen/textsize_12"
  43. android:textColor="@color/white"/>
  44. </LinearLayout>
  45. <LinearLayout
  46. android:layout_height="15dp"
  47. android:layout_width="fill_parent"
  48. android:orientation="horizontal">
  49. <TextView
  50. android:text="产品名称:"
  51. android:layout_height="wrap_content"
  52. android:layout_width="wrap_content"
  53. android:textSize="@dimen/textsize_12"
  54. android:textColor="@color/white"/>
  55. <TextView
  56. android:layout_height="wrap_content"
  57. android:layout_width="wrap_content"
  58. android:id="@+id/ItemText3"
  59. android:layout_marginLeft="8dp"
  60. android:textSize="@dimen/textsize_12"
  61. android:textColor="@color/white"/>
  62. </LinearLayout>
  63. <LinearLayout
  64. android:layout_height="15dp"
  65. android:layout_width="fill_parent"
  66. android:orientation="horizontal">
  67. <TextView
  68. android:text="计数数量:"
  69. android:layout_height="wrap_content"
  70. android:layout_width="wrap_content"
  71. android:textSize="@dimen/textsize_12"
  72. android:textColor="@color/white"/>
  73. <TextView
  74. android:layout_height="wrap_content"
  75. android:layout_width="wrap_content"
  76. android:id="@+id/ItemText4"
  77. android:layout_marginLeft="8dp"
  78. android:textSize="@dimen/textsize_12"
  79. android:textColor="@color/white"/>
  80. </LinearLayout>
  81. </LinearLayout>