item_visa_payment.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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/visa_client"
  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. </LinearLayout>
  39. <View
  40. android:layout_width="match_parent"
  41. android:layout_height="@dimen/line"
  42. android:layout_marginTop="@dimen/common_padding"
  43. android:layout_marginBottom="@dimen/common_padding"
  44. android:background="@color/line_color" />
  45. <LinearLayout
  46. android:layout_width="match_parent"
  47. android:layout_height="wrap_content"
  48. android:layout_marginTop="@dimen/common_padding"
  49. android:baselineAligned="false"
  50. android:orientation="horizontal">
  51. <TextView
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:layout_gravity="center"
  55. android:text="@string/visa_price"
  56. android:textSize="@dimen/text_size_medium" />
  57. <TextView
  58. android:id="@+id/visa_price"
  59. android:layout_width="match_parent"
  60. android:layout_height="wrap_content"
  61. android:layout_marginStart="@dimen/common_padding"
  62. android:background="@color/white"
  63. android:gravity="end"
  64. android:singleLine="true"
  65. android:textSize="@dimen/text_size_medium" />
  66. </LinearLayout>
  67. <View
  68. android:layout_width="match_parent"
  69. android:layout_height="@dimen/line"
  70. android:layout_marginTop="@dimen/common_padding_huge"
  71. android:layout_marginBottom="@dimen/common_padding"
  72. android:background="@color/line_color" />
  73. <LinearLayout
  74. android:layout_width="match_parent"
  75. android:layout_height="wrap_content"
  76. android:layout_marginTop="@dimen/common_padding"
  77. android:baselineAligned="false"
  78. android:orientation="horizontal">
  79. <TextView
  80. android:layout_width="wrap_content"
  81. android:layout_height="wrap_content"
  82. android:layout_gravity="center"
  83. android:text="@string/visa_handle_number"
  84. android:textSize="@dimen/text_size_medium" />
  85. <TextView
  86. android:id="@+id/visa_number"
  87. android:layout_width="match_parent"
  88. android:layout_height="wrap_content"
  89. android:layout_marginStart="@dimen/common_padding"
  90. android:background="@color/white"
  91. android:gravity="end"
  92. android:singleLine="true"
  93. android:textSize="@dimen/text_size_medium" />
  94. </LinearLayout>
  95. <View
  96. android:layout_width="match_parent"
  97. android:layout_height="@dimen/line"
  98. android:layout_marginTop="@dimen/common_padding_huge"
  99. android:layout_marginBottom="@dimen/common_padding"
  100. android:background="@color/line_color" />
  101. <LinearLayout
  102. android:layout_width="match_parent"
  103. android:layout_height="wrap_content"
  104. android:layout_marginTop="@dimen/common_padding"
  105. android:orientation="horizontal">
  106. <TextView
  107. android:layout_width="wrap_content"
  108. android:layout_height="match_parent"
  109. android:layout_gravity="center"
  110. android:text="@string/visa_exemption_number"
  111. android:textSize="@dimen/text_size_medium" />
  112. <TextView
  113. android:id="@+id/visa_free_number"
  114. android:layout_width="0dp"
  115. android:layout_height="wrap_content"
  116. android:layout_marginStart="@dimen/common_padding"
  117. android:layout_weight="1"
  118. android:background="@color/white"
  119. android:gravity="end"
  120. android:singleLine="true"
  121. android:textSize="@dimen/text_size_medium" />
  122. </LinearLayout>
  123. <View
  124. android:layout_width="match_parent"
  125. android:layout_height="@dimen/line"
  126. android:layout_marginTop="@dimen/common_padding_huge"
  127. android:layout_marginBottom="@dimen/common_padding"
  128. android:background="@color/line_color" />
  129. <LinearLayout
  130. android:layout_width="match_parent"
  131. android:layout_height="wrap_content"
  132. android:layout_marginTop="@dimen/common_padding"
  133. android:orientation="horizontal">
  134. <TextView
  135. android:layout_width="wrap_content"
  136. android:layout_height="wrap_content"
  137. android:layout_gravity="center"
  138. android:text="@string/is_agent"
  139. android:textSize="@dimen/text_size_medium" />
  140. <TextView
  141. android:id="@+id/is_third"
  142. android:layout_width="0dp"
  143. android:layout_height="wrap_content"
  144. android:layout_marginStart="@dimen/common_padding"
  145. android:layout_weight="1"
  146. android:background="@color/white"
  147. android:gravity="end"
  148. android:singleLine="true"
  149. android:textSize="@dimen/text_size_medium" />
  150. </LinearLayout>
  151. <View
  152. android:layout_width="match_parent"
  153. android:layout_height="@dimen/line"
  154. android:layout_marginTop="@dimen/common_padding_huge"
  155. android:layout_marginBottom="@dimen/common_padding"
  156. android:background="@color/line_color" />
  157. <LinearLayout
  158. android:layout_width="match_parent"
  159. android:layout_height="wrap_content"
  160. android:layout_marginTop="@dimen/common_padding"
  161. android:layout_marginBottom="@dimen/common_padding_huge"
  162. android:orientation="horizontal">
  163. <TextView
  164. android:layout_width="wrap_content"
  165. android:layout_height="match_parent"
  166. android:layout_gravity="center"
  167. android:text="@string/is_verify"
  168. android:textSize="@dimen/text_size_medium" />
  169. <TextView
  170. android:id="@+id/is_verify"
  171. android:layout_width="match_parent"
  172. android:layout_height="wrap_content"
  173. android:layout_marginStart="@dimen/common_padding"
  174. android:background="@color/white"
  175. android:gravity="end"
  176. android:singleLine="true"
  177. android:textSize="@dimen/text_size_medium" />
  178. </LinearLayout>
  179. </LinearLayout>
  180. </LinearLayout>