Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2018
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.70 KB | None | 0 0
  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. android:id="@+id/linearLayout">
  7.  
  8. <include
  9. layout="@layout/toolbar"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content" />
  12.  
  13. <ScrollView
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent">
  16.  
  17. <LinearLayout
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent"
  20. android:orientation="vertical">
  21.  
  22. <RelativeLayout
  23. android:id="@+id/rPage"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:focusableInTouchMode="true">
  27.  
  28. <ImageView
  29. android:id="@+id/img_logo_project"
  30. android:layout_width="match_parent"
  31. android:layout_height="match_parent" />
  32.  
  33. <ImageView
  34. android:layout_width="match_parent"
  35. android:layout_height="40dp"
  36. android:layout_alignParentBottom="true"
  37. android:layout_alignParentLeft="true"
  38. android:layout_alignParentStart="true"
  39. android:background="@color/colorTransparantProject" />
  40.  
  41. <com.nataproperty.samaneahill.helper.MyTextViewLatoReguler
  42. android:id="@+id/txt_project_name"
  43. android:layout_width="match_parent"
  44. android:layout_height="40dp"
  45. android:layout_alignParentBottom="true"
  46. android:layout_alignParentLeft="true"
  47. android:layout_alignParentStart="true"
  48. android:gravity="center_horizontal|center_vertical"
  49. android:textColor="@color/colorWhite"
  50. android:textSize="20dp" />
  51.  
  52. </RelativeLayout>
  53.  
  54. <!--Nup total-->
  55. <LinearLayout
  56. android:layout_width="match_parent"
  57. android:layout_height="wrap_content"
  58. android:layout_gravity="center_horizontal|center_vertical"
  59. android:gravity="center"
  60. android:orientation="horizontal"
  61. android:paddingBottom="@dimen/activity_vertical_margin"
  62. android:paddingLeft="@dimen/activity_horizontal_margin"
  63. android:paddingRight="@dimen/activity_horizontal_margin"
  64. android:paddingTop="@dimen/activity_vertical_margin">
  65.  
  66. <com.nataproperty.samaneahill.helper.MyTextViewLatoReguler
  67. android:layout_width="wrap_content"
  68. android:layout_height="wrap_content"
  69. android:text="@string/txt_total"
  70. android:textSize="20dp" />
  71.  
  72. <com.nataproperty.samaneahill.helper.MyTextViewLatoReguler
  73. android:layout_width="wrap_content"
  74. android:layout_height="wrap_content"
  75. android:text=" "
  76. android:textSize="20dp" />
  77.  
  78. <com.nataproperty.samaneahill.helper.MyTextViewLatoReguler
  79. android:id="@+id/txt_total"
  80. android:layout_width="wrap_content"
  81. android:layout_height="wrap_content"
  82. android:textSize="20dp" />
  83.  
  84. </LinearLayout>
  85.  
  86. <!--Sparator 1dp-->
  87. <LinearLayout
  88. android:layout_width="match_parent"
  89. android:layout_height="match_parent"
  90. android:focusableInTouchMode="true"
  91. android:orientation="vertical"
  92. android:paddingLeft="@dimen/activity_horizontal_margin"
  93. android:paddingRight="@dimen/activity_horizontal_margin">
  94.  
  95. <ImageView
  96. android:layout_width="match_parent"
  97. android:layout_height="1dp"
  98. android:background="@color/colorTransparantBlack" />
  99.  
  100. </LinearLayout>
  101.  
  102. <!--Account Bank-->
  103. <LinearLayout
  104. android:layout_width="match_parent"
  105. android:layout_height="match_parent"
  106. android:orientation="vertical"
  107. android:paddingBottom="@dimen/activity_vertical_margin"
  108. android:paddingLeft="@dimen/activity_horizontal_margin"
  109. android:paddingRight="@dimen/activity_horizontal_margin"
  110. android:paddingTop="@dimen/activity_vertical_margin">
  111.  
  112. <com.nataproperty.samaneahill.helper.MyTextViewLatoReguler
  113. android:layout_width="wrap_content"
  114. android:layout_height="wrap_content"
  115. android:layout_marginBottom="@dimen/margin16"
  116. android:text="@string/txt_payment_bank"
  117. android:textSize="20dp" />
  118.  
  119. <com.nataproperty.samaneahill.helper.MyListView
  120. android:id="@+id/list_account_bank"
  121. android:layout_width="match_parent"
  122. android:layout_height="match_parent"
  123. android:layout_marginBottom="6dp"
  124. android:cacheColorHint="@android:color/transparent"
  125. android:divider="@color/colorTransparant"
  126. android:dividerHeight="@dimen/margin16"
  127. android:listSelector="@android:color/transparent">
  128.  
  129. </com.nataproperty.samaneahill.helper.MyListView>
  130.  
  131. </LinearLayout>
  132.  
  133. <!--Sparator 6dp-->
  134. <LinearLayout
  135. android:layout_width="match_parent"
  136. android:layout_height="match_parent"
  137. android:focusableInTouchMode="true"
  138. android:orientation="vertical"
  139. android:paddingLeft="@dimen/activity_horizontal_margin"
  140. android:paddingRight="@dimen/activity_horizontal_margin">
  141.  
  142. <ImageView
  143. android:layout_width="match_parent"
  144. android:layout_height="6dp"
  145. android:background="@color/colorTransparantBlack" />
  146.  
  147. </LinearLayout>
  148.  
  149. <LinearLayout
  150. android:layout_width="match_parent"
  151. android:layout_height="match_parent"
  152. android:focusableInTouchMode="true"
  153. android:orientation="vertical"
  154. android:paddingBottom="@dimen/activity_vertical_margin"
  155. android:paddingLeft="@dimen/activity_horizontal_margin"
  156. android:paddingRight="@dimen/activity_horizontal_margin"
  157. android:paddingTop="@dimen/activity_vertical_margin">
  158.  
  159. <com.nataproperty.samaneahill.helper.MyTextViewLatoReguler
  160. android:layout_width="wrap_content"
  161. android:layout_height="wrap_content"
  162. android:layout_marginBottom="@dimen/margin6"
  163. android:text="@string/txt_confirm_payment"
  164. android:textSize="20dp" />
  165.  
  166. <LinearLayout
  167. android:layout_width="match_parent"
  168. android:layout_height="wrap_content"
  169. android:orientation="horizontal">
  170.  
  171. <com.nataproperty.samaneahill.helper.MyTextViewLatoLight
  172. android:layout_width="0dp"
  173. android:layout_height="wrap_content"
  174. android:layout_gravity="center_vertical"
  175. android:layout_weight="1"
  176. android:text="@string/txt_account_bank" />
  177.  
  178. <com.nataproperty.samaneahill.helper.MyTextViewLatoLight
  179. android:layout_width="0dp"
  180. android:layout_height="wrap_content"
  181. android:layout_gravity="center_vertical"
  182. android:layout_weight="0.2"
  183. android:text=" : " />
  184.  
  185. <Spinner
  186. android:id="@+id/list_bank_tranfer"
  187. android:layout_width="0dp"
  188. android:layout_height="wrap_content"
  189. android:layout_gravity="center_vertical"
  190. android:layout_weight="1.5"></Spinner>
  191.  
  192. </LinearLayout>
  193.  
  194. <LinearLayout
  195. android:layout_width="match_parent"
  196. android:layout_height="wrap_content"
  197. android:orientation="horizontal">
  198.  
  199. <com.nataproperty.samaneahill.helper.MyTextViewLatoLight
  200. android:layout_width="0dp"
  201. android:layout_height="wrap_content"
  202. android:layout_weight="1"
  203. android:text="@string/txt_account_name" />
  204.  
  205. <com.nataproperty.samaneahill.helper.MyTextViewLatoLight
  206. android:layout_width="0dp"
  207. android:layout_height="wrap_content"
  208. android:layout_weight="0.2"
  209. android:text=" : " />
  210.  
  211. <com.nataproperty.samaneahill.helper.MyEditTextLatoLight
  212. android:id="@+id/edit_account_name"
  213. android:layout_width="0dp"
  214. android:layout_height="wrap_content"
  215. android:layout_weight="1.5"
  216. android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ " />
  217.  
  218. </LinearLayout>
  219.  
  220. <LinearLayout
  221. android:layout_width="match_parent"
  222. android:layout_height="wrap_content"
  223. android:layout_marginBottom="16dp"
  224. android:orientation="horizontal">
  225.  
  226. <com.nataproperty.samaneahill.helper.MyTextViewLatoLight
  227. android:layout_width="0dp"
  228. android:layout_height="wrap_content"
  229. android:layout_weight="1"
  230. android:text="@string/txt_account_nomor" />
  231.  
  232. <com.nataproperty.samaneahill.helper.MyTextViewLatoLight
  233. android:layout_width="0dp"
  234. android:layout_height="wrap_content"
  235. android:layout_weight="0.2"
  236. android:text=" : " />
  237.  
  238. <com.nataproperty.samaneahill.helper.MyEditTextLatoLight
  239. android:id="@+id/edit_account_number"
  240. android:layout_width="0dp"
  241. android:layout_height="wrap_content"
  242. android:layout_weight="1.5"
  243. android:inputType="number" />
  244.  
  245. </LinearLayout>
  246.  
  247. <LinearLayout
  248. android:layout_width="match_parent"
  249. android:layout_height="wrap_content"
  250. android:layout_marginBottom="16dp"
  251. android:orientation="vertical">
  252.  
  253. <com.nataproperty.samaneahill.helper.MyTextViewLatoLight
  254. android:layout_width="match_parent"
  255. android:layout_height="wrap_content"
  256. android:layout_marginBottom="@dimen/margin16"
  257. android:text="@string/txt_upload_payment" />
  258.  
  259. <ImageView
  260. android:visibility="gone"
  261. android:id="@+id/img_receipt"
  262. android:layout_width="300px"
  263. android:layout_height="200px"
  264. android:layout_gravity="center_horizontal"
  265. android:src="@drawable/payment_receipt" />
  266.  
  267. <android.support.v7.widget.RecyclerView
  268. android:id="@+id/rv_imgview"
  269. android:layout_marginRight="4dp"
  270. android:layout_width="match_parent"
  271. android:layout_height="200px" />
  272.  
  273.  
  274. </LinearLayout>
  275.  
  276. <Button
  277. android:id="@+id/btn_confirm"
  278. android:layout_width="match_parent"
  279. android:layout_height="wrap_content"
  280. android:background="@drawable/selector_button"
  281. android:text="@string/btn_confrim_payment" />
  282.  
  283. </LinearLayout>
  284.  
  285. </LinearLayout>
  286.  
  287. </ScrollView>
  288.  
  289. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement