Advertisement
wildanfuady

Untitled

Feb 8th, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 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:orientation="horizontal" android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5.  
  6. <ImageView
  7. android:layout_width="50dp"
  8. android:layout_height="50dp"
  9. android:src="@drawable/ic_person_black"
  10. android:layout_marginEnd="10dp"
  11. android:layout_marginRight="10dp"/>
  12.  
  13. <LinearLayout
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:orientation="vertical">
  17.  
  18. <LinearLayout
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:orientation="horizontal">
  22.  
  23. <TextView
  24. android:layout_width="0dp"
  25. android:layout_height="wrap_content"
  26. android:layout_weight="1"
  27. android:id="@+id/rowNama"
  28. android:text="Nama Siswa"
  29. android:textSize="20sp"/>
  30.  
  31. <TextView
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:id="@+id/rowJenjang"
  35. android:text="Jenjang"
  36. android:textSize="20sp"/>
  37.  
  38. </LinearLayout>
  39.  
  40. <LinearLayout
  41. android:layout_width="match_parent"
  42. android:layout_height="wrap_content"
  43. android:orientation="horizontal">
  44.  
  45. <TextView
  46. android:layout_width="0dp"
  47. android:layout_height="wrap_content"
  48. android:layout_weight="1"
  49. android:id="@+id/rowGender"
  50. android:text="Gender"
  51. android:textSize="20sp"/>
  52.  
  53. <TextView
  54. android:layout_width="wrap_content"
  55. android:layout_height="wrap_content"
  56. android:id="@+id/rowNoHp"
  57. android:text="No Hp"
  58. android:textSize="20sp"
  59. android:layout_weight="1"
  60. android:textAlignment="textEnd"
  61. android:gravity="end"/>
  62.  
  63. </LinearLayout>
  64.  
  65. </LinearLayout>
  66.  
  67. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement