activity_fxy_detection_tray_putin.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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="match_parent"
  13. android:fitsSystemWindows="true"
  14. android:scrollbars="none">
  15. <LinearLayout
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:orientation="vertical">
  19. <LinearLayout
  20. android:id="@+id/ll_tracking_number"
  21. style="@style/FromLinearLayoutItem"
  22. android:orientation="horizontal">
  23. <EditText
  24. style="@style/EditTextStyle"
  25. android:id="@+id/et_tracking_number"
  26. android:hint="扫描或者输入签收单号"
  27. android:text=""/>
  28. <include layout="@layout/item_image_close" />
  29. </LinearLayout>
  30. <LinearLayout
  31. android:id="@+id/ll_label_picture"
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content"
  34. android:visibility="visible"
  35. android:orientation="vertical">
  36. <LinearLayout
  37. android:layout_width="match_parent"
  38. android:layout_height="wrap_content"
  39. android:layout_marginLeft="@dimen/dp_10"
  40. android:layout_marginRight="@dimen/dp_10"
  41. android:background="@null"
  42. android:padding="@dimen/dp_10"
  43. android:gravity="center_vertical"
  44. android:orientation="vertical">
  45. <TextView
  46. style="@style/fontSize"
  47. android:layout_width="wrap_content"
  48. android:layout_height="wrap_content"
  49. android:textStyle="bold"
  50. android:text="签收单 | 每托照片">
  51. </TextView>
  52. </LinearLayout>
  53. <include layout="@layout/fragment_show_img"/>
  54. </LinearLayout>
  55. <View
  56. android:layout_width="match_parent"
  57. android:layout_height="1dp"
  58. android:background="@color/md_grey_100" />
  59. <LinearLayout
  60. android:id="@+id/ll_btn_confirm"
  61. android:layout_width="match_parent"
  62. android:layout_height="wrap_content"
  63. android:layout_marginLeft="@dimen/dp_10"
  64. android:layout_marginTop="@dimen/dp_10"
  65. android:layout_marginRight="@dimen/dp_10"
  66. android:layout_marginBottom="@dimen/dp_4"
  67. android:background="@drawable/bg_white_et"
  68. android:gravity="center_vertical"
  69. android:orientation="horizontal"
  70. android:layout_gravity="bottom"
  71. android:padding="10dp">
  72. <TextView
  73. style="@style/fontSize"
  74. android:id="@+id/btn_confirm"
  75. android:layout_width="match_parent"
  76. android:layout_height="wrap_content"
  77. android:layout_marginLeft="@dimen/dp_10"
  78. android:layout_marginRight="@dimen/dp_10"
  79. android:background="@drawable/bg_orange_item"
  80. android:gravity="center"
  81. android:text="托盘入库完成"
  82. android:padding="10dp"
  83. android:textColor="@color/white"
  84. android:visibility="visible" />
  85. </LinearLayout>
  86. <include layout="@layout/item_upload_await_number" />
  87. </LinearLayout>
  88. </ScrollView>
  89. </LinearLayout>