item_group_invite_payment.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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:layout_marginBottom="@dimen/common_padding"
  21. android:orientation="horizontal">
  22. <TextView
  23. android:id="@+id/invitee_name"
  24. android:layout_width="0dp"
  25. android:layout_height="wrap_content"
  26. android:layout_weight="1"
  27. android:textColor="@color/text_color_blue"
  28. android:textSize="@dimen/text_size_large"
  29. android:textStyle="bold" />
  30. <ImageView
  31. android:id="@+id/delete"
  32. android:layout_width="@dimen/common_padding_heavy"
  33. android:layout_height="@dimen/common_padding_heavy"
  34. android:layout_marginEnd="@dimen/common_padding"
  35. android:src="@mipmap/icon_delete" />
  36. </LinearLayout>
  37. <View
  38. android:layout_width="match_parent"
  39. android:layout_height="@dimen/line"
  40. android:layout_marginTop="@dimen/common_padding"
  41. android:layout_marginBottom="@dimen/common_padding"
  42. android:background="@color/line_color" />
  43. <LinearLayout
  44. android:layout_width="match_parent"
  45. android:layout_height="wrap_content"
  46. android:layout_marginTop="@dimen/common_padding"
  47. android:orientation="horizontal">
  48. <TextView
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:layout_gravity="center"
  52. android:text="@string/invitee_city"
  53. android:textSize="@dimen/text_size_medium" />
  54. <TextView
  55. android:id="@+id/invitee_area"
  56. android:layout_width="0dp"
  57. android:layout_height="wrap_content"
  58. android:layout_marginStart="@dimen/common_padding"
  59. android:layout_weight="1"
  60. android:background="@color/white"
  61. android:gravity="end"
  62. android:singleLine="true"
  63. android:textSize="@dimen/text_size_medium" />
  64. </LinearLayout>
  65. <View
  66. android:layout_width="match_parent"
  67. android:layout_height="@dimen/line"
  68. android:layout_marginTop="@dimen/common_padding_huge"
  69. android:layout_marginBottom="@dimen/common_padding"
  70. android:background="@color/line_color" />
  71. <LinearLayout
  72. android:layout_width="match_parent"
  73. android:layout_height="wrap_content"
  74. android:layout_marginTop="@dimen/common_padding"
  75. android:orientation="horizontal">
  76. <TextView
  77. android:layout_width="wrap_content"
  78. android:layout_height="wrap_content"
  79. android:layout_gravity="center"
  80. android:text="@string/invite_payment"
  81. android:textSize="@dimen/text_size_medium" />
  82. <TextView
  83. android:id="@+id/invite_payment"
  84. android:layout_width="0dp"
  85. android:layout_height="wrap_content"
  86. android:layout_marginStart="@dimen/common_padding"
  87. android:layout_weight="1"
  88. android:background="@color/white"
  89. android:gravity="end"
  90. android:singleLine="true"
  91. android:textSize="@dimen/text_size_medium" />
  92. </LinearLayout>
  93. <View
  94. android:layout_width="match_parent"
  95. android:layout_height="@dimen/line"
  96. android:layout_marginTop="@dimen/common_padding_huge"
  97. android:layout_marginBottom="@dimen/common_padding"
  98. android:background="@color/line_color" />
  99. <LinearLayout
  100. android:layout_width="match_parent"
  101. android:layout_height="wrap_content"
  102. android:layout_marginTop="@dimen/common_padding"
  103. android:orientation="horizontal">
  104. <TextView
  105. android:layout_width="wrap_content"
  106. android:layout_height="wrap_content"
  107. android:layout_gravity="center"
  108. android:text="@string/express_fee"
  109. android:textSize="@dimen/text_size_medium" />
  110. <TextView
  111. android:id="@+id/express_fee"
  112. android:layout_width="0dp"
  113. android:layout_height="wrap_content"
  114. android:layout_marginStart="@dimen/common_padding"
  115. android:layout_weight="1"
  116. android:background="@color/white"
  117. android:gravity="end"
  118. android:singleLine="true"
  119. android:textSize="@dimen/text_size_medium" />
  120. </LinearLayout>
  121. <View
  122. android:layout_width="match_parent"
  123. android:layout_height="@dimen/line"
  124. android:layout_marginTop="@dimen/common_padding_huge"
  125. android:layout_marginBottom="@dimen/common_padding"
  126. android:background="@color/line_color" />
  127. <LinearLayout
  128. android:layout_width="match_parent"
  129. android:layout_height="wrap_content"
  130. android:layout_marginTop="@dimen/common_padding"
  131. android:orientation="horizontal">
  132. <TextView
  133. android:layout_width="wrap_content"
  134. android:layout_height="wrap_content"
  135. android:layout_gravity="center"
  136. android:text="@string/official_translate_payment"
  137. android:textSize="@dimen/text_size_medium" />
  138. <TextView
  139. android:id="@+id/translate_payment"
  140. android:layout_width="0dp"
  141. android:layout_height="wrap_content"
  142. android:layout_marginStart="@dimen/common_padding"
  143. android:layout_weight="1"
  144. android:background="@color/white"
  145. android:gravity="end"
  146. android:singleLine="true"
  147. android:textSize="@dimen/text_size_medium" />
  148. </LinearLayout>
  149. <View
  150. android:layout_width="match_parent"
  151. android:layout_height="@dimen/line"
  152. android:layout_marginTop="@dimen/common_padding_huge"
  153. android:layout_marginBottom="@dimen/common_padding"
  154. android:background="@color/line_color" />
  155. <LinearLayout
  156. android:layout_width="match_parent"
  157. android:layout_height="wrap_content"
  158. android:layout_marginTop="@dimen/common_padding"
  159. android:orientation="horizontal">
  160. <TextView
  161. android:layout_width="wrap_content"
  162. android:layout_height="wrap_content"
  163. android:layout_gravity="center"
  164. android:text="@string/official_activity_payment"
  165. android:textSize="@dimen/text_size_medium" />
  166. <TextView
  167. android:id="@+id/activity_payment"
  168. android:layout_width="0dp"
  169. android:layout_height="wrap_content"
  170. android:layout_marginStart="@dimen/common_padding"
  171. android:layout_weight="1"
  172. android:background="@color/white"
  173. android:gravity="end"
  174. android:singleLine="true"
  175. android:textSize="@dimen/text_size_medium" />
  176. </LinearLayout>
  177. <View
  178. android:layout_width="match_parent"
  179. android:layout_height="@dimen/line"
  180. android:layout_marginTop="@dimen/common_padding_huge"
  181. android:layout_marginBottom="@dimen/common_padding"
  182. android:background="@color/line_color" />
  183. <LinearLayout
  184. android:layout_width="match_parent"
  185. android:layout_height="wrap_content"
  186. android:layout_marginTop="@dimen/common_padding"
  187. android:orientation="horizontal">
  188. <TextView
  189. android:layout_width="wrap_content"
  190. android:layout_height="wrap_content"
  191. android:layout_gravity="center"
  192. android:text="@string/payment_sum"
  193. android:textSize="@dimen/text_size_medium" />
  194. <TextView
  195. android:id="@+id/payment_total"
  196. android:layout_width="0dp"
  197. android:layout_height="wrap_content"
  198. android:layout_marginStart="@dimen/common_padding"
  199. android:layout_weight="1"
  200. android:background="@color/white"
  201. android:gravity="end"
  202. android:singleLine="true"
  203. android:textSize="@dimen/text_size_medium" />
  204. </LinearLayout>
  205. <View
  206. android:layout_width="match_parent"
  207. android:layout_height="@dimen/line"
  208. android:layout_marginTop="@dimen/common_padding_huge"
  209. android:layout_marginBottom="@dimen/common_padding"
  210. android:background="@color/line_color" />
  211. <LinearLayout
  212. android:layout_width="match_parent"
  213. android:layout_height="wrap_content"
  214. android:layout_marginTop="@dimen/common_padding"
  215. android:orientation="horizontal">
  216. <TextView
  217. android:layout_width="wrap_content"
  218. android:layout_height="wrap_content"
  219. android:layout_gravity="center"
  220. android:text="@string/attend"
  221. android:textSize="@dimen/text_size_medium" />
  222. <TextView
  223. android:id="@+id/is_attend"
  224. android:layout_width="match_parent"
  225. android:layout_height="wrap_content"
  226. android:layout_marginStart="@dimen/common_padding"
  227. android:background="@color/white"
  228. android:gravity="end"
  229. android:singleLine="true"
  230. android:textSize="@dimen/text_size_medium" />
  231. </LinearLayout>
  232. <View
  233. android:layout_width="match_parent"
  234. android:layout_height="@dimen/line"
  235. android:layout_marginTop="@dimen/common_padding_huge"
  236. android:layout_marginBottom="@dimen/common_padding"
  237. android:background="@color/line_color" />
  238. <LinearLayout
  239. android:layout_width="match_parent"
  240. android:layout_height="wrap_content"
  241. android:layout_marginTop="@dimen/common_padding"
  242. android:baselineAligned="false"
  243. android:orientation="horizontal">
  244. <TextView
  245. android:layout_width="wrap_content"
  246. android:layout_height="wrap_content"
  247. android:layout_gravity="center"
  248. android:text="@string/is_verify"
  249. android:textSize="@dimen/text_size_medium" />
  250. <TextView
  251. android:id="@+id/is_verify"
  252. android:layout_width="match_parent"
  253. android:layout_height="wrap_content"
  254. android:layout_marginStart="@dimen/common_padding"
  255. android:background="@color/white"
  256. android:gravity="end"
  257. android:singleLine="true"
  258. android:textSize="@dimen/text_size_medium" />
  259. </LinearLayout>
  260. <View
  261. android:layout_width="match_parent"
  262. android:layout_height="@dimen/line"
  263. android:layout_marginTop="@dimen/common_padding_huge"
  264. android:layout_marginBottom="@dimen/common_padding"
  265. android:background="@color/line_color" />
  266. <LinearLayout
  267. android:layout_width="match_parent"
  268. android:layout_height="wrap_content"
  269. android:layout_marginTop="@dimen/common_padding"
  270. android:layout_marginBottom="@dimen/common_padding_huge"
  271. android:orientation="horizontal">
  272. <TextView
  273. android:layout_width="wrap_content"
  274. android:layout_height="wrap_content"
  275. android:layout_gravity="center"
  276. android:text="@string/invite_time"
  277. android:textSize="@dimen/text_size_medium" />
  278. <TextView
  279. android:id="@+id/invite_time"
  280. android:layout_width="0dp"
  281. android:layout_height="wrap_content"
  282. android:layout_marginStart="@dimen/common_padding"
  283. android:layout_weight="1"
  284. android:background="@color/white"
  285. android:gravity="end"
  286. android:singleLine="true"
  287. android:textSize="@dimen/text_size_medium" />
  288. </LinearLayout>
  289. </LinearLayout>
  290. </LinearLayout>