fragment_invite_data_search.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:layout_marginStart="@dimen/common_padding_heavy"
  10. android:layout_marginTop="@dimen/common_padding_huge"
  11. android:layout_marginEnd="@dimen/common_padding_heavy"
  12. android:orientation="vertical">
  13. <LinearLayout
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:layout_marginTop="@dimen/common_padding"
  17. android:orientation="horizontal">
  18. <TextView
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_gravity="center"
  22. android:text="@string/country"
  23. android:textSize="@dimen/text_size_medium" />
  24. <TextView
  25. android:id="@+id/invite_country"
  26. android:layout_width="0dp"
  27. android:layout_height="wrap_content"
  28. android:layout_marginStart="@dimen/common_padding"
  29. android:layout_weight="1"
  30. android:gravity="end"
  31. android:singleLine="true"
  32. android:text="@string/all"
  33. android:textSize="@dimen/text_size_medium" />
  34. </LinearLayout>
  35. <View
  36. android:layout_width="match_parent"
  37. android:layout_height="@dimen/line"
  38. android:layout_marginTop="@dimen/common_padding_huge"
  39. android:layout_marginBottom="@dimen/common_padding"
  40. android:background="@color/line_color" />
  41. <LinearLayout
  42. android:layout_width="match_parent"
  43. android:layout_height="wrap_content"
  44. android:layout_marginTop="@dimen/common_padding"
  45. android:orientation="horizontal">
  46. <TextView
  47. android:layout_width="wrap_content"
  48. android:layout_height="wrap_content"
  49. android:layout_gravity="center"
  50. android:text="@string/invitee_name"
  51. android:textSize="@dimen/text_size_medium" />
  52. <TextView
  53. android:id="@+id/invitee_name"
  54. android:layout_width="0dp"
  55. android:layout_height="wrap_content"
  56. android:layout_marginStart="@dimen/common_padding"
  57. android:layout_weight="1"
  58. android:gravity="end"
  59. android:singleLine="true"
  60. android:text="@string/all"
  61. android:textSize="@dimen/text_size_medium" />
  62. </LinearLayout>
  63. <View
  64. android:layout_width="match_parent"
  65. android:layout_height="@dimen/line"
  66. android:layout_marginTop="@dimen/common_padding_huge"
  67. android:layout_marginBottom="@dimen/common_padding"
  68. android:background="@color/line_color" />
  69. <LinearLayout
  70. android:layout_width="match_parent"
  71. android:layout_height="wrap_content"
  72. android:layout_marginTop="@dimen/common_padding"
  73. android:orientation="horizontal">
  74. <TextView
  75. android:layout_width="wrap_content"
  76. android:layout_height="wrap_content"
  77. android:layout_gravity="center"
  78. android:text="@string/contacts"
  79. android:textSize="@dimen/text_size_medium" />
  80. <TextView
  81. android:id="@+id/contract_name"
  82. android:layout_width="0dp"
  83. android:layout_height="wrap_content"
  84. android:layout_marginStart="@dimen/common_padding"
  85. android:layout_weight="1"
  86. android:gravity="end"
  87. android:singleLine="true"
  88. android:text="@string/all"
  89. android:textSize="@dimen/text_size_medium" />
  90. </LinearLayout>
  91. <View
  92. android:layout_width="match_parent"
  93. android:layout_height="@dimen/line"
  94. android:layout_marginTop="@dimen/common_padding_huge"
  95. android:layout_marginBottom="@dimen/common_padding"
  96. android:background="@color/line_color" />
  97. <LinearLayout
  98. android:layout_width="match_parent"
  99. android:layout_height="wrap_content"
  100. android:layout_marginTop="@dimen/common_padding"
  101. android:orientation="horizontal">
  102. <TextView
  103. android:layout_width="wrap_content"
  104. android:layout_height="wrap_content"
  105. android:layout_gravity="center"
  106. android:text="@string/group_name"
  107. android:textSize="@dimen/text_size_medium" />
  108. <TextView
  109. android:id="@+id/group_name"
  110. android:layout_width="0dp"
  111. android:layout_height="wrap_content"
  112. android:layout_marginStart="@dimen/common_padding"
  113. android:layout_weight="1"
  114. android:gravity="end"
  115. android:singleLine="true"
  116. android:text="@string/all"
  117. android:textSize="@dimen/text_size_medium" />
  118. </LinearLayout>
  119. <View
  120. android:layout_width="match_parent"
  121. android:layout_height="@dimen/line"
  122. android:layout_marginTop="@dimen/common_padding_huge"
  123. android:layout_marginBottom="@dimen/common_padding"
  124. android:background="@color/line_color" />
  125. <LinearLayout
  126. android:layout_width="match_parent"
  127. android:layout_height="wrap_content"
  128. android:layout_marginTop="@dimen/common_padding"
  129. android:orientation="horizontal">
  130. <TextView
  131. android:layout_width="wrap_content"
  132. android:layout_height="wrap_content"
  133. android:layout_gravity="center"
  134. android:text="@string/creator"
  135. android:textSize="@dimen/text_size_medium" />
  136. <TextView
  137. android:id="@+id/create_user"
  138. android:layout_width="0dp"
  139. android:layout_height="wrap_content"
  140. android:layout_marginStart="@dimen/common_padding"
  141. android:layout_weight="1"
  142. android:gravity="end"
  143. android:singleLine="true"
  144. android:text="@string/all"
  145. android:textSize="@dimen/text_size_medium" />
  146. </LinearLayout>
  147. <View
  148. android:layout_width="match_parent"
  149. android:layout_height="@dimen/line"
  150. android:layout_marginTop="@dimen/common_padding_huge"
  151. android:layout_marginBottom="@dimen/common_padding"
  152. android:background="@color/line_color" />
  153. <LinearLayout
  154. android:layout_width="match_parent"
  155. android:layout_height="wrap_content"
  156. android:layout_marginTop="@dimen/common_padding"
  157. android:orientation="horizontal">
  158. <TextView
  159. android:layout_width="wrap_content"
  160. android:layout_height="wrap_content"
  161. android:layout_gravity="center"
  162. android:text="@string/industry"
  163. android:textSize="@dimen/text_size_medium" />
  164. <TextView
  165. android:id="@+id/industry"
  166. android:layout_width="0dp"
  167. android:layout_height="wrap_content"
  168. android:layout_marginStart="@dimen/common_padding"
  169. android:layout_weight="1"
  170. android:gravity="end"
  171. android:singleLine="true"
  172. android:text="@string/all"
  173. android:textSize="@dimen/text_size_medium" />
  174. </LinearLayout>
  175. <View
  176. android:layout_width="match_parent"
  177. android:layout_height="@dimen/line"
  178. android:layout_marginTop="@dimen/common_padding_huge"
  179. android:layout_marginBottom="@dimen/common_padding"
  180. android:background="@color/line_color" />
  181. <LinearLayout
  182. android:layout_width="match_parent"
  183. android:layout_height="wrap_content"
  184. android:layout_marginTop="@dimen/common_padding"
  185. android:orientation="horizontal">
  186. <TextView
  187. android:layout_width="wrap_content"
  188. android:layout_height="wrap_content"
  189. android:layout_gravity="center"
  190. android:text="@string/invite_start_time"
  191. android:textSize="@dimen/text_size_medium" />
  192. <TextView
  193. android:id="@+id/invite_start_time"
  194. android:layout_width="0dp"
  195. android:layout_height="wrap_content"
  196. android:layout_marginStart="@dimen/common_padding"
  197. android:layout_weight="1"
  198. android:gravity="end"
  199. android:singleLine="true"
  200. android:hint="@string/please_select"
  201. android:textColorHint="@color/hint_text_color"
  202. android:textSize="@dimen/text_size_medium"
  203. android:textColor="@color/text_color"/>
  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/invite_end_time"
  221. android:textSize="@dimen/text_size_medium" />
  222. <TextView
  223. android:id="@+id/invite_end_time"
  224. android:layout_width="0dp"
  225. android:layout_height="wrap_content"
  226. android:layout_marginStart="@dimen/common_padding"
  227. android:layout_weight="1"
  228. android:gravity="end"
  229. android:singleLine="true"
  230. android:hint="@string/please_select"
  231. android:textColorHint="@color/hint_text_color"
  232. android:textSize="@dimen/text_size_medium"
  233. android:textColor="@color/text_color"/>
  234. </LinearLayout>
  235. <View
  236. android:layout_width="match_parent"
  237. android:layout_height="@dimen/line"
  238. android:layout_marginTop="@dimen/common_padding_huge"
  239. android:layout_marginBottom="@dimen/common_padding"
  240. android:background="@color/line_color" />
  241. </LinearLayout>
  242. <LinearLayout
  243. android:layout_width="match_parent"
  244. android:layout_height="wrap_content"
  245. android:layout_margin="@dimen/common_padding_huge"
  246. android:orientation="horizontal">
  247. <TextView
  248. android:id="@+id/commit"
  249. android:layout_width="match_parent"
  250. android:layout_height="@dimen/button_height"
  251. android:background="@drawable/shape_corner_solid_blue"
  252. android:gravity="center"
  253. android:text="@string/confirm"
  254. android:textColor="@color/white"
  255. android:textSize="@dimen/text_size_large"
  256. android:textStyle="bold" />
  257. </LinearLayout>
  258. </LinearLayout>