fragment_whcheck_makematerial.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--仓库管理:物料库存核查-->
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="vertical" android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <!--搜索-->
  7. <LinearLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_marginTop="@dimen/space_top_8"
  11. android:layout_marginLeft="@dimen/space_left_8"
  12. android:layout_marginRight="@dimen/space_right_8">
  13. <com.uas.hy_electronic.view.ClearableEditText
  14. android:id="@+id/et_prodcode_whmm"
  15. android:hint="条码号"
  16. style="@style/PopWinEditTextStyle"
  17. android:layout_weight="2"/>
  18. <TextView
  19. android:id="@+id/btn_search_whmm"
  20. style="@style/PopWinButtonStyle"
  21. android:layout_weight="4"
  22. android:background="@drawable/search_16"/>
  23. </LinearLayout>
  24. <LinearLayout
  25. android:orientation="horizontal"
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content">
  28. </LinearLayout>
  29. <LinearLayout
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content">
  32. <com.uas.hy_electronic.view.ClearableEditText
  33. android:layout_marginTop="8dp"
  34. android:id="@+id/et_whcode_whmm"
  35. android:layout_marginLeft="@dimen/space_left_8"
  36. android:layout_marginRight="@dimen/space_right_8"
  37. style="@style/PopWinEditTextStyle"
  38. android:layout_weight="1"
  39. android:hint="仓库" />
  40. <ImageView
  41. android:id="@+id/iv_search"
  42. android:layout_width="@dimen/height_32"
  43. android:layout_height="@dimen/height_32"
  44. android:layout_gravity="center_vertical"
  45. android:background="@drawable/bg_button"
  46. android:layout_marginLeft="@dimen/space_left_5"
  47. android:layout_marginRight="@dimen/dp_10"
  48. android:src="@drawable/search_48"/>
  49. </LinearLayout>
  50. <!--中部-->
  51. <TableLayout
  52. android:layout_marginTop="@dimen/space_top_8"
  53. style="@style/CardWhiteStyle_wrapheight">
  54. <TableRow>
  55. <TextView
  56. style="@style/CardContentTextStyle"
  57. android:text="编号"/>
  58. <TextView
  59. android:id="@+id/tv_barprodcode"
  60. style="@style/CardContentTextStyle"
  61. android:textColor="@color/text_search"/>
  62. </TableRow>
  63. <TableRow>
  64. <TextView
  65. style="@style/CardContentTextStyle"
  66. android:text="@string/text_fragment_whcheck_pr_detail"/>
  67. <TextView
  68. android:id="@+id/tv_pr_detail"
  69. style="@style/CardContentTextStyle"
  70. android:textColor="@color/text_search"/>
  71. </TableRow>
  72. <TableRow>
  73. <TextView
  74. style="@style/CardContentTextStyle"
  75. android:text="@string/text_fragment_whcheck_pr_spec" />
  76. <TextView
  77. android:id="@+id/tv_pr_spec"
  78. style="@style/CardContentTextStyle"
  79. android:textColor="@color/text_search" />
  80. </TableRow>
  81. <TableRow>
  82. <TextView
  83. style="@style/CardContentTextStyle"
  84. android:text="总数" />
  85. <TextView
  86. android:id="@+id/tv_pr_qty"
  87. style="@style/CardContentTextStyle"
  88. android:textColor="@color/text_search" />
  89. </TableRow>
  90. </TableLayout>
  91. <LinearLayout
  92. style="@style/CardWhiteSytle_fillheight"
  93. android:background="@color/white">
  94. <include layout="@layout/item_list_table"/>
  95. <!--信息列表-->
  96. <ScrollView
  97. android:layout_width="match_parent"
  98. android:layout_height="match_parent"
  99. android:fillViewport="true"
  100. android:background="@color/transparent">
  101. <ListView
  102. android:id="@+id/lv_detail_whmm"
  103. android:layout_width="match_parent"
  104. android:layout_height="wrap_content"
  105. android:background="@color/transparent"/>
  106. </ScrollView>
  107. </LinearLayout>
  108. </LinearLayout>