activity_fxy_detection_putin.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. <ImageButton
  29. android:id="@+id/ib_tracking_number_clear"
  30. style="@style/ClearImg" />
  31. </LinearLayout>
  32. <LinearLayout
  33. android:id="@+id/ll_order_number"
  34. style="@style/FromLinearLayoutItem"
  35. android:orientation="horizontal">
  36. <EditText
  37. style="@style/EditTextStyle"
  38. android:id="@+id/et_order_number"
  39. android:hint="扫描或者输入箱号"
  40. android:text=""/>
  41. <ImageButton
  42. android:id="@+id/ib_order_number_clear"
  43. style="@style/ClearImg" />
  44. </LinearLayout>
  45. <LinearLayout
  46. android:id="@+id/ll_label_picture"
  47. android:layout_width="match_parent"
  48. android:layout_height="wrap_content"
  49. android:visibility="visible"
  50. android:orientation="vertical">
  51. <LinearLayout
  52. android:layout_width="match_parent"
  53. android:layout_height="wrap_content"
  54. android:layout_marginLeft="@dimen/dp_10"
  55. android:layout_marginRight="@dimen/dp_10"
  56. android:background="@null"
  57. android:padding="@dimen/dp_10"
  58. android:gravity="center_vertical"
  59. android:orientation="vertical">
  60. <TextView
  61. style="@style/fontSize"
  62. android:layout_width="wrap_content"
  63. android:layout_height="wrap_content"
  64. android:textStyle="bold"
  65. android:text="面单拍照">
  66. </TextView>
  67. </LinearLayout>
  68. <include layout="@layout/fragment_show_img"/>
  69. </LinearLayout>
  70. <LinearLayout
  71. android:id="@+id/ll_weigh_picture"
  72. android:layout_width="match_parent"
  73. android:layout_height="wrap_content"
  74. android:visibility="gone"
  75. android:orientation="vertical">
  76. <LinearLayout
  77. android:layout_width="match_parent"
  78. android:layout_height="wrap_content"
  79. android:layout_marginLeft="@dimen/dp_10"
  80. android:layout_marginRight="@dimen/dp_10"
  81. android:background="@null"
  82. android:padding="@dimen/dp_10"
  83. android:gravity="center_vertical"
  84. android:orientation="vertical">
  85. <TextView
  86. style="@style/fontSize"
  87. android:layout_width="wrap_content"
  88. android:layout_height="wrap_content"
  89. android:textStyle="bold"
  90. android:text="内件拍照">
  91. </TextView>
  92. </LinearLayout>
  93. <include layout="@layout/fragment_show_img"/>
  94. </LinearLayout>
  95. <LinearLayout
  96. android:id="@+id/ll_result"
  97. android:layout_width="match_parent"
  98. android:layout_height="wrap_content"
  99. android:background="@drawable/bg_white_et"
  100. android:layout_marginLeft="@dimen/dp_10"
  101. android:layout_marginRight="@dimen/dp_10"
  102. android:layout_marginTop="20dp"
  103. android:layout_marginBottom="20dp"
  104. android:paddingBottom="10dp"
  105. android:paddingTop="10dp"
  106. android:gravity="center"
  107. android:visibility="gone"
  108. android:orientation="horizontal">
  109. <TextView
  110. android:id="@+id/tv_result"
  111. style="@style/tvLeftStyle"
  112. android:paddingStart="20dp"
  113. android:paddingEnd="20dp"
  114. android:textSize="50sp"/>
  115. </LinearLayout>
  116. <LinearLayout
  117. android:layout_width="match_parent"
  118. android:layout_height="wrap_content"
  119. android:layout_marginLeft="@dimen/dp_10"
  120. android:layout_marginTop="@dimen/dp_10"
  121. android:layout_marginRight="@dimen/dp_10"
  122. android:layout_marginBottom="@dimen/dp_4"
  123. android:background="@drawable/bg_white_et"
  124. android:gravity="center_vertical"
  125. android:orientation="horizontal"
  126. android:layout_gravity="bottom"
  127. android:padding="10dp">
  128. <TextView
  129. style="@style/fontSize"
  130. android:id="@+id/btn_confirm"
  131. android:layout_width="match_parent"
  132. android:layout_height="wrap_content"
  133. android:layout_marginLeft="@dimen/dp_10"
  134. android:layout_marginRight="@dimen/dp_10"
  135. android:background="@drawable/bg_orange_item"
  136. android:gravity="center"
  137. android:text="确认入库"
  138. android:padding="10dp"
  139. android:textColor="@color/white"
  140. android:visibility="visible" />
  141. </LinearLayout>
  142. </LinearLayout>
  143. </ScrollView>
  144. </LinearLayout>