item_ground_convey_info.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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="wrap_content"
  6. android:layout_marginTop="@dimen/common_padding"
  7. android:layout_marginBottom="@dimen/common_padding"
  8. android:background="@drawable/shape_corner_stroke_white"
  9. android:orientation="vertical"
  10. tools:viewBindingIgnore="true">
  11. <LinearLayout
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:layout_margin="@dimen/common_padding"
  15. android:orientation="vertical">
  16. <LinearLayout
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:layout_marginTop="@dimen/common_padding"
  20. android:orientation="horizontal">
  21. <TextView
  22. android:id="@+id/group_convey_area"
  23. android:layout_width="0dp"
  24. android:layout_height="wrap_content"
  25. android:layout_marginEnd="@dimen/common_padding_huge"
  26. android:layout_weight="1"
  27. android:ellipsize="marquee"
  28. android:maxLines="1"
  29. android:textColor="@color/text_color_blue"
  30. android:textSize="@dimen/text_size_medium"
  31. android:textStyle="bold" />
  32. <ImageView
  33. android:id="@+id/delete"
  34. android:layout_width="@dimen/common_padding_heavy"
  35. android:layout_height="@dimen/common_padding_heavy"
  36. android:layout_marginEnd="@dimen/common_padding"
  37. android:src="@mipmap/icon_delete"
  38. tools:ignore="ContentDescription"/>
  39. </LinearLayout>
  40. <View
  41. android:layout_width="match_parent"
  42. android:layout_height="@dimen/line"
  43. android:layout_marginTop="@dimen/common_padding"
  44. android:layout_marginBottom="@dimen/common_padding"
  45. android:background="@color/line_color" />
  46. <LinearLayout
  47. android:layout_width="match_parent"
  48. android:layout_height="wrap_content"
  49. android:layout_marginTop="@dimen/common_padding"
  50. android:baselineAligned="false"
  51. android:orientation="horizontal">
  52. <TextView
  53. android:layout_width="wrap_content"
  54. android:layout_height="wrap_content"
  55. android:layout_gravity="center"
  56. android:text="@string/service_price"
  57. android:textSize="@dimen/text_size_medium" />
  58. <TextView
  59. android:id="@+id/service_price"
  60. android:layout_width="match_parent"
  61. android:layout_height="wrap_content"
  62. android:layout_marginStart="@dimen/common_padding"
  63. android:background="@color/white"
  64. android:gravity="end"
  65. android:singleLine="true"
  66. android:textSize="@dimen/text_size_medium" />
  67. </LinearLayout>
  68. <View
  69. android:layout_width="match_parent"
  70. android:layout_height="@dimen/line"
  71. android:layout_marginTop="@dimen/common_padding_huge"
  72. android:layout_marginBottom="@dimen/common_padding"
  73. android:background="@color/line_color" />
  74. <LinearLayout
  75. android:layout_width="match_parent"
  76. android:layout_height="wrap_content"
  77. android:layout_marginTop="@dimen/common_padding"
  78. android:baselineAligned="false"
  79. android:orientation="horizontal">
  80. <TextView
  81. android:layout_width="wrap_content"
  82. android:layout_height="wrap_content"
  83. android:layout_gravity="center"
  84. android:text="@string/price_type"
  85. android:textSize="@dimen/text_size_medium" />
  86. <TextView
  87. android:id="@+id/price_type"
  88. android:layout_width="match_parent"
  89. android:layout_height="wrap_content"
  90. android:layout_marginStart="@dimen/common_padding"
  91. android:background="@color/white"
  92. android:gravity="end"
  93. android:singleLine="true"
  94. android:textSize="@dimen/text_size_medium" />
  95. </LinearLayout>
  96. <View
  97. android:layout_width="match_parent"
  98. android:layout_height="@dimen/line"
  99. android:layout_marginTop="@dimen/common_padding_huge"
  100. android:layout_marginBottom="@dimen/common_padding"
  101. android:background="@color/line_color" />
  102. <LinearLayout
  103. android:layout_width="match_parent"
  104. android:layout_height="wrap_content"
  105. android:layout_marginTop="@dimen/common_padding"
  106. android:baselineAligned="false"
  107. android:orientation="horizontal">
  108. <TextView
  109. android:layout_width="wrap_content"
  110. android:layout_height="wrap_content"
  111. android:layout_gravity="center"
  112. android:text="@string/payment_sum"
  113. android:textSize="@dimen/text_size_medium" />
  114. <TextView
  115. android:id="@+id/this_time_payment"
  116. android:layout_width="match_parent"
  117. android:layout_height="wrap_content"
  118. android:layout_marginStart="@dimen/common_padding"
  119. android:background="@color/white"
  120. android:gravity="end"
  121. android:singleLine="true"
  122. android:textSize="@dimen/text_size_medium" />
  123. </LinearLayout>
  124. <View
  125. android:layout_width="match_parent"
  126. android:layout_height="@dimen/line"
  127. android:layout_marginTop="@dimen/common_padding_huge"
  128. android:layout_marginBottom="@dimen/common_padding"
  129. android:background="@color/line_color" />
  130. <LinearLayout
  131. android:layout_width="match_parent"
  132. android:layout_height="wrap_content"
  133. android:layout_marginTop="@dimen/common_padding"
  134. android:baselineAligned="false"
  135. android:orientation="horizontal">
  136. <TextView
  137. android:layout_width="wrap_content"
  138. android:layout_height="wrap_content"
  139. android:layout_gravity="center"
  140. android:text="@string/balance_payment"
  141. android:textSize="@dimen/text_size_medium" />
  142. <TextView
  143. android:id="@+id/balance_payment"
  144. android:layout_width="match_parent"
  145. android:layout_height="wrap_content"
  146. android:layout_marginStart="@dimen/common_padding"
  147. android:background="@color/white"
  148. android:gravity="end"
  149. android:singleLine="true"
  150. android:textSize="@dimen/text_size_medium" />
  151. </LinearLayout>
  152. <View
  153. android:layout_width="match_parent"
  154. android:layout_height="@dimen/line"
  155. android:layout_marginTop="@dimen/common_padding_huge"
  156. android:layout_marginBottom="@dimen/common_padding"
  157. android:background="@color/line_color" />
  158. <LinearLayout
  159. android:layout_width="match_parent"
  160. android:layout_height="wrap_content"
  161. android:layout_marginTop="@dimen/common_padding"
  162. android:baselineAligned="false"
  163. android:orientation="horizontal">
  164. <TextView
  165. android:layout_width="wrap_content"
  166. android:layout_height="wrap_content"
  167. android:layout_gravity="center"
  168. android:text="@string/service_during_time"
  169. android:textSize="@dimen/text_size_medium" />
  170. <TextView
  171. android:id="@+id/service_during_time"
  172. android:layout_width="match_parent"
  173. android:layout_height="wrap_content"
  174. android:layout_marginStart="@dimen/common_padding"
  175. android:background="@color/white"
  176. android:gravity="end"
  177. android:singleLine="true"
  178. android:textSize="@dimen/text_size_medium" />
  179. </LinearLayout>
  180. <View
  181. android:layout_width="match_parent"
  182. android:layout_height="@dimen/line"
  183. android:layout_marginTop="@dimen/common_padding_huge"
  184. android:layout_marginBottom="@dimen/common_padding"
  185. android:background="@color/line_color" />
  186. <LinearLayout
  187. android:layout_width="match_parent"
  188. android:layout_height="wrap_content"
  189. android:layout_marginTop="@dimen/common_padding"
  190. android:baselineAligned="false"
  191. android:orientation="horizontal">
  192. <TextView
  193. android:layout_width="wrap_content"
  194. android:layout_height="wrap_content"
  195. android:layout_gravity="center"
  196. android:text="@string/is_verify"
  197. android:textSize="@dimen/text_size_medium" />
  198. <TextView
  199. android:id="@+id/is_verify"
  200. android:layout_width="match_parent"
  201. android:layout_height="wrap_content"
  202. android:layout_marginStart="@dimen/common_padding"
  203. android:background="@color/white"
  204. android:gravity="end"
  205. android:singleLine="true"
  206. android:textSize="@dimen/text_size_medium" />
  207. </LinearLayout>
  208. <View
  209. android:layout_width="match_parent"
  210. android:layout_height="@dimen/line"
  211. android:layout_marginTop="@dimen/common_padding_huge"
  212. android:layout_marginBottom="@dimen/common_padding"
  213. android:background="@color/line_color" />
  214. <LinearLayout
  215. android:layout_width="match_parent"
  216. android:layout_height="50dp"
  217. android:layout_marginTop="@dimen/common_padding"
  218. android:layout_marginBottom="@dimen/common_padding_huge"
  219. android:background="@drawable/shape_corner_solid_blue"
  220. android:baselineAligned="false"
  221. android:orientation="horizontal">
  222. <TextView
  223. android:id="@+id/payment_detail"
  224. android:layout_width="match_parent"
  225. android:layout_height="match_parent"
  226. android:gravity="center"
  227. android:text="@string/view_cost_detail"
  228. android:textColor="@color/white"
  229. android:textSize="@dimen/text_size_medium"
  230. android:textStyle="bold" />
  231. </LinearLayout>
  232. </LinearLayout>
  233. </LinearLayout>