collect_item2.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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:layout_marginLeft="8dp"
  23. android:id="@+id/ItemText2"
  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:id="@+id/ItemText3"
  41. android:layout_marginLeft="8dp"
  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/ItemText4"
  59. android:layout_marginLeft="8dp"
  60. android:textSize="@dimen/textsize_12"
  61. android:textColor="@color/white"/>
  62. </LinearLayout>
  63. </LinearLayout>