Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.21 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".DetailActivity"
  8. android:orientation="vertical">
  9.  
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:gravity="center">
  14.  
  15. <ImageView
  16. android:layout_width="100dp"
  17. android:layout_height="100dp"
  18. android:src="@drawable/ic_person_black"
  19. android:layout_gravity="center"/>
  20.  
  21. </LinearLayout>
  22.  
  23. <ScrollView
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content">
  26.  
  27. <LinearLayout
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"
  30. android:orientation="vertical">
  31.  
  32. <LinearLayout
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content"
  35. android:orientation="horizontal"
  36. android:padding="10dp">
  37.  
  38. <ImageView
  39. android:layout_width="50dp"
  40. android:layout_height="50dp"
  41. android:src="@drawable/ic_bookmark_black"
  42. android:layout_marginRight="10dp"/>
  43.  
  44. <LinearLayout
  45. android:layout_width="match_parent"
  46. android:layout_height="wrap_content"
  47. android:orientation="vertical">
  48.  
  49. <TextView
  50. android:layout_width="match_parent"
  51. android:layout_height="wrap_content"
  52. android:text="Nama Siswa"/>
  53.  
  54. <TextView
  55. android:layout_width="match_parent"
  56. android:layout_height="wrap_content"
  57. android:text="Wildan Fuady"
  58. android:textSize="20sp"
  59. android:textStyle="bold"
  60. android:id="@+id/txt_nama"/>
  61.  
  62. </LinearLayout>
  63.  
  64. </LinearLayout>
  65.  
  66. <LinearLayout
  67. android:layout_width="match_parent"
  68. android:layout_height="wrap_content"
  69. android:orientation="horizontal"
  70. android:padding="10dp">
  71.  
  72. <ImageView
  73. android:layout_width="50dp"
  74. android:layout_height="50dp"
  75. android:src="@drawable/ic_phone_black"
  76. android:layout_marginRight="10dp"/>
  77.  
  78. <LinearLayout
  79. android:layout_width="match_parent"
  80. android:layout_height="wrap_content"
  81. android:orientation="vertical">
  82.  
  83. <TextView
  84. android:layout_width="match_parent"
  85. android:layout_height="wrap_content"
  86. android:text="No Hp"/>
  87.  
  88. <TextView
  89. android:layout_width="match_parent"
  90. android:layout_height="wrap_content"
  91. android:text="087722686655"
  92. android:textSize="20sp"
  93. android:textStyle="bold"
  94. android:id="@+id/txt_nohp"/>
  95.  
  96. </LinearLayout>
  97.  
  98. </LinearLayout>
  99.  
  100. <LinearLayout
  101. android:layout_width="match_parent"
  102. android:layout_height="wrap_content"
  103. android:orientation="horizontal"
  104. android:padding="10dp">
  105.  
  106. <ImageView
  107. android:layout_width="50dp"
  108. android:layout_height="50dp"
  109. android:src="@drawable/ic_email_black"
  110. android:layout_marginRight="10dp"/>
  111.  
  112. <LinearLayout
  113. android:layout_width="match_parent"
  114. android:layout_height="wrap_content"
  115. android:orientation="vertical">
  116.  
  117. <TextView
  118. android:layout_width="match_parent"
  119. android:layout_height="wrap_content"
  120. android:text="Email"/>
  121.  
  122. <TextView
  123. android:layout_width="match_parent"
  124. android:layout_height="wrap_content"
  125. android:text="wildanfuady@gmail.com"
  126. android:textSize="20sp"
  127. android:textStyle="bold"
  128. android:id="@+id/txt_email"/>
  129.  
  130. </LinearLayout>
  131.  
  132. </LinearLayout>
  133.  
  134. <LinearLayout
  135. android:layout_width="match_parent"
  136. android:layout_height="wrap_content"
  137. android:orientation="horizontal"
  138. android:padding="10dp">
  139.  
  140. <ImageView
  141. android:layout_width="50dp"
  142. android:layout_height="50dp"
  143. android:src="@drawable/ic_date_black"
  144. android:layout_marginRight="10dp"/>
  145.  
  146. <LinearLayout
  147. android:layout_width="match_parent"
  148. android:layout_height="wrap_content"
  149. android:orientation="vertical">
  150.  
  151. <TextView
  152. android:layout_width="match_parent"
  153. android:layout_height="wrap_content"
  154. android:text="Tanggal Lahir"/>
  155.  
  156. <TextView
  157. android:layout_width="match_parent"
  158. android:layout_height="wrap_content"
  159. android:text="Wildan Fuady"
  160. android:textSize="20sp"
  161. android:textStyle="bold"
  162. android:id="@+id/txt_tgllahir"/>
  163.  
  164. </LinearLayout>
  165.  
  166. </LinearLayout>
  167.  
  168. <LinearLayout
  169. android:layout_width="match_parent"
  170. android:layout_height="wrap_content"
  171. android:orientation="horizontal"
  172. android:padding="10dp">
  173.  
  174. <ImageView
  175. android:layout_width="50dp"
  176. android:layout_height="50dp"
  177. android:src="@drawable/ic_wc_black"
  178. android:layout_marginRight="10dp"/>
  179.  
  180. <LinearLayout
  181. android:layout_width="match_parent"
  182. android:layout_height="wrap_content"
  183. android:orientation="vertical">
  184.  
  185. <TextView
  186. android:layout_width="match_parent"
  187. android:layout_height="wrap_content"
  188. android:text="Gender"/>
  189.  
  190. <TextView
  191. android:layout_width="match_parent"
  192. android:layout_height="wrap_content"
  193. android:text="Laki-laki"
  194. android:textSize="20sp"
  195. android:textStyle="bold"
  196. android:id="@+id/txt_gender"/>
  197.  
  198. </LinearLayout>
  199.  
  200. </LinearLayout>
  201.  
  202. <LinearLayout
  203. android:layout_width="match_parent"
  204. android:layout_height="wrap_content"
  205. android:orientation="horizontal"
  206. android:padding="10dp">
  207.  
  208. <ImageView
  209. android:layout_width="50dp"
  210. android:layout_height="50dp"
  211. android:src="@drawable/ic_flight_takeoff_black"
  212. android:layout_marginRight="10dp"/>
  213.  
  214. <LinearLayout
  215. android:layout_width="match_parent"
  216. android:layout_height="wrap_content"
  217. android:orientation="vertical">
  218.  
  219. <TextView
  220. android:layout_width="match_parent"
  221. android:layout_height="wrap_content"
  222. android:text="Jenjang"/>
  223.  
  224. <TextView
  225. android:layout_width="match_parent"
  226. android:layout_height="wrap_content"
  227. android:text="SD"
  228. android:textSize="20sp"
  229. android:textStyle="bold"
  230. android:id="@+id/txt_jenjang"/>
  231.  
  232. </LinearLayout>
  233.  
  234. </LinearLayout>
  235.  
  236. <LinearLayout
  237. android:layout_width="match_parent"
  238. android:layout_height="wrap_content"
  239. android:orientation="horizontal"
  240. android:padding="10dp">
  241.  
  242. <ImageView
  243. android:layout_width="50dp"
  244. android:layout_height="50dp"
  245. android:src="@drawable/ic_fitness_black"
  246. android:layout_marginRight="10dp"/>
  247.  
  248. <LinearLayout
  249. android:layout_width="match_parent"
  250. android:layout_height="wrap_content"
  251. android:orientation="vertical">
  252.  
  253. <TextView
  254. android:layout_width="match_parent"
  255. android:layout_height="wrap_content"
  256. android:text="Hobi"/>
  257.  
  258. <TextView
  259. android:layout_width="match_parent"
  260. android:layout_height="wrap_content"
  261. android:text="Membaca"
  262. android:textSize="20sp"
  263. android:textStyle="bold"
  264. android:id="@+id/txt_hobi"/>
  265.  
  266. </LinearLayout>
  267.  
  268. </LinearLayout>
  269.  
  270. <LinearLayout
  271. android:layout_width="match_parent"
  272. android:layout_height="wrap_content"
  273. android:orientation="horizontal"
  274. android:padding="10dp">
  275.  
  276. <ImageView
  277. android:layout_width="50dp"
  278. android:layout_height="50dp"
  279. android:src="@drawable/ic_location_on_black"
  280. android:layout_marginRight="10dp"/>
  281.  
  282. <LinearLayout
  283. android:layout_width="match_parent"
  284. android:layout_height="wrap_content"
  285. android:orientation="vertical">
  286.  
  287. <TextView
  288. android:layout_width="match_parent"
  289. android:layout_height="wrap_content"
  290. android:text="Alamat"/>
  291.  
  292. <TextView
  293. android:layout_width="match_parent"
  294. android:layout_height="wrap_content"
  295. android:text="Bojonggede"
  296. android:textSize="20sp"
  297. android:textStyle="bold"
  298. android:id="@+id/txt_alamat"/>
  299.  
  300. </LinearLayout>
  301.  
  302. </LinearLayout>
  303.  
  304. </LinearLayout>
  305.  
  306. </ScrollView>
  307.  
  308. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement