activity_fms_storage_add.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. xmlns:app="http://schemas.android.com/apk/res-auto"
  7. android:background="@color/md_grey_100"
  8. android:orientation="vertical">
  9. <ScrollView
  10. android:id="@+id/ll_scroll_view"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:scrollbars="none">
  14. <LinearLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:orientation="vertical">
  18. <LinearLayout
  19. style="@style/FromLinearLayoutItem"
  20. android:orientation="horizontal">
  21. <TextView
  22. style="@style/tvLeftStyle"
  23. android:text="排舱编号" />
  24. <TextView
  25. style="@style/tvLeftStyle"
  26. android:text=":"/>
  27. <com.fxy.baselibrary.views.MarqueeTextView
  28. android:id="@+id/mt_outbound_number"
  29. style="@style/mtRightStyle"
  30. />
  31. </LinearLayout>
  32. <LinearLayout
  33. style="@style/FromLinearLayoutItem"
  34. android:orientation="horizontal">
  35. <EditText
  36. style="@style/EditTextStyle"
  37. android:id="@+id/et_order_no"
  38. android:hint="@string/hint_please_scan_no"
  39. android:text="" />
  40. <ImageButton
  41. style="@style/ClearImg"
  42. android:id="@+id/ib_order_no_clear"
  43. />
  44. <include layout="@layout/item_image_code" />
  45. </LinearLayout>
  46. <LinearLayout
  47. style="@style/FromLinearLayoutItem"
  48. android:orientation="horizontal">
  49. <EditText
  50. style="@style/EditTextStyle"
  51. android:id="@+id/et_order_qty"
  52. android:hint="请输入货物件数"
  53. android:inputType="number"
  54. android:text="" />
  55. </LinearLayout>
  56. <View
  57. android:layout_width="match_parent"
  58. android:layout_height="4dp"
  59. android:background="@color/md_grey_100" />
  60. <View
  61. android:layout_width="match_parent"
  62. android:layout_height="4dp"
  63. android:background="@color/md_grey_100" />
  64. <LinearLayout
  65. android:layout_width="match_parent"
  66. android:layout_height="wrap_content"
  67. android:layout_marginLeft="@dimen/dp_10"
  68. android:layout_marginTop="@dimen/dp_10"
  69. android:layout_marginRight="@dimen/dp_10"
  70. android:layout_marginBottom="@dimen/dp_4"
  71. android:background="@drawable/bg_white_et"
  72. android:gravity= "center"
  73. android:orientation="horizontal"
  74. android:padding="10dp">
  75. <TextView
  76. android:id="@+id/btn_add_loader"
  77. style="@style/fontSize"
  78. android:layout_width="wrap_content"
  79. android:layout_height="wrap_content"
  80. android:layout_marginLeft="@dimen/dp_10"
  81. android:layout_marginRight="@dimen/dp_10"
  82. android:background="@drawable/bg_orange_item"
  83. android:gravity="center"
  84. android:paddingLeft="40dp"
  85. android:paddingTop="@dimen/dp_10"
  86. android:paddingRight="40dp"
  87. android:paddingBottom="@dimen/dp_10"
  88. android:text="装柜"
  89. android:textColor="@color/white"
  90. android:visibility="visible" />
  91. <TextView
  92. style="@style/fontSize"
  93. android:id="@+id/btn_finish"
  94. android:layout_width="wrap_content"
  95. android:layout_height="wrap_content"
  96. android:layout_marginLeft="@dimen/dp_10"
  97. android:layout_marginRight="@dimen/dp_10"
  98. android:background="@drawable/bg_blue_item"
  99. android:gravity="center"
  100. android:text="完成"
  101. android:paddingRight="40dp"
  102. android:paddingLeft="40dp"
  103. android:paddingTop="@dimen/dp_10"
  104. android:paddingBottom="@dimen/dp_10"
  105. android:textColor="@color/white"
  106. android:visibility="visible" />
  107. </LinearLayout>
  108. <View
  109. android:layout_width="match_parent"
  110. android:layout_height="4dp"
  111. android:background="@color/md_grey_100" />
  112. <include layout="@layout/item_storage_details" />
  113. </LinearLayout>
  114. </ScrollView>
  115. <include layout="@layout/item_float_image" />
  116. </LinearLayout>