Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.98 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. xmlns:app="http://schemas.android.com/apk/res-auto"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. tools:context=".MyProfileActivity">
  9.  
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:orientation="vertical"
  14. android:padding="15dp">
  15.  
  16. <RelativeLayout
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent">
  19.  
  20. <ImageView
  21. android:layout_width="100dp"
  22. android:layout_height="100dp"
  23. android:id="@+id/imgProfile"
  24. android:background="#EEEEEE"/>
  25.  
  26. <LinearLayout
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:layout_marginLeft="16sp"
  30. android:layout_toRightOf="@+id/imgProfile"
  31. android:orientation="vertical">
  32.  
  33. <TextView
  34. android:layout_width="wrap_content"
  35. android:layout_height="wrap_content"
  36. android:text="Name : "
  37. android:textSize="15dp"
  38. android:textColor="#000000"
  39. android:fontFamily="sans-serif"/>
  40. <TextView
  41. android:layout_width="wrap_content"
  42. android:layout_height="wrap_content"
  43. android:id="@+id/txtName"
  44. android:text=""
  45. android:textSize="15sp"
  46. android:textColor="#000000"
  47. android:fontFamily="sans-serif"/>
  48.  
  49.  
  50. </LinearLayout>
  51.  
  52. <LinearLayout
  53. android:layout_width="match_parent"
  54. android:layout_height="wrap_content"
  55. android:orientation="horizontal">
  56.  
  57. <TextView
  58. android:layout_width="wrap_content"
  59. android:layout_height="wrap_content"
  60. android:text="Gender : "
  61. android:textSize="15sp"
  62. android:textColor="#000000"
  63. android:fontFamily="sans-serif"/>
  64. <TextView
  65. android:layout_width="wrap_content"
  66. android:layout_height="wrap_content"
  67. android:id="@+id/txtGender"
  68. android:text=""
  69. android:textSize="15sp"
  70. android:textColor="#000000"
  71. android:fontFamily="sans-serif"/>
  72.  
  73.  
  74. </LinearLayout>
  75.  
  76. <LinearLayout
  77. android:layout_width="match_parent"
  78. android:layout_height="wrap_content"
  79. android:orientation="horizontal">
  80.  
  81. <TextView
  82. android:layout_width="wrap_content"
  83. android:layout_height="wrap_content"
  84. android:text="Email : "
  85. android:textSize="15sp"
  86. android:textColor="#000000"
  87. android:fontFamily="sans-serif"/>
  88. <TextView
  89. android:layout_width="wrap_content"
  90. android:layout_height="wrap_content"
  91. android:id="@+id/txtEmail"
  92. android:text=""
  93. android:textSize="15sp"
  94. android:textColor="#000000"
  95. android:fontFamily="sans-serif"/>
  96.  
  97.  
  98. </LinearLayout>
  99.  
  100. <LinearLayout
  101. android:layout_width="match_parent"
  102. android:layout_height="wrap_content"
  103. android:orientation="horizontal">
  104.  
  105. <TextView
  106. android:layout_width="wrap_content"
  107. android:layout_height="wrap_content"
  108. android:text="No Telepon : "
  109. android:textSize="15sp"
  110. android:textColor="#000000"
  111. android:fontFamily="sans-serif"/>
  112. <TextView
  113. android:layout_width="wrap_content"
  114. android:layout_height="wrap_content"
  115. android:id="@+id/txtNotelp"
  116. android:text=""
  117. android:textSize="15sp"
  118. android:textColor="#000000"
  119. android:fontFamily="sans-serif"/>
  120.  
  121.  
  122. </LinearLayout>
  123.  
  124. <LinearLayout
  125. android:layout_width="match_parent"
  126. android:layout_height="wrap_content"
  127. android:orientation="horizontal">
  128.  
  129. <TextView
  130. android:layout_width="wrap_content"
  131. android:layout_height="wrap_content"
  132. android:text="Alamat : "
  133. android:textSize="15sp"
  134. android:textColor="#000000"
  135. android:fontFamily="sans-serif"/>
  136. <TextView
  137. android:layout_width="wrap_content"
  138. android:layout_height="wrap_content"
  139. android:id="@+id/txtAlamat"
  140. android:text=""
  141. android:textSize="15sp"
  142. android:textColor="#000000"
  143. android:fontFamily="sans-serif"/>
  144.  
  145.  
  146. </LinearLayout>
  147.  
  148.  
  149. </RelativeLayout>
  150.  
  151.  
  152. </LinearLayout>
  153.  
  154. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement