item_invite_data.xml 12 KB

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