Advertisement
rama_astadipati

linear

Feb 13th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.55 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="wrap_content"
  8. android:orientation="vertical"
  9. android:padding="16dp"
  10. tools:context=".activity.DetilsemuaActivity">
  11.  
  12. <TextView
  13. android:layout_width="match_parent"
  14. android:text="Data Umum"
  15. android:textStyle="bold"
  16. android:layout_height="wrap_content" />
  17.  
  18. <RelativeLayout
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content">
  21.  
  22. <TextView
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:text="Nomor Perkara"
  26. android:textStyle="bold" />
  27.  
  28. <TextView
  29. android:id="@+id/tvNomorPerkara"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_alignParentEnd="true"
  33. android:layout_alignParentRight="true"
  34. android:text="-" />
  35. </RelativeLayout>
  36.  
  37. <RelativeLayout
  38. android:layout_width="match_parent"
  39. android:layout_height="wrap_content">
  40.  
  41. <TextView
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:text="Jenis Perkara"
  45. android:textStyle="bold" />
  46.  
  47. <TextView
  48. android:id="@+id/tvJenisPerkara"
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:layout_alignParentEnd="true"
  52. android:layout_alignParentRight="true"
  53. android:text="-" />
  54. </RelativeLayout>
  55.  
  56. <RelativeLayout
  57. android:layout_width="match_parent"
  58. android:layout_height="wrap_content">
  59.  
  60. <TextView
  61. android:layout_width="wrap_content"
  62. android:layout_height="wrap_content"
  63. android:text="Sebagai P"
  64. android:textStyle="bold" />
  65.  
  66. <TextView
  67. android:id="@+id/tvSebagaiP"
  68. android:layout_width="wrap_content"
  69. android:layout_height="wrap_content"
  70. android:layout_alignParentEnd="true"
  71. android:layout_alignParentRight="true"
  72. android:text="-" />
  73. </RelativeLayout>
  74.  
  75. <RelativeLayout
  76. android:layout_width="match_parent"
  77. android:layout_height="wrap_content">
  78.  
  79. <TextView
  80. android:layout_width="wrap_content"
  81. android:layout_height="wrap_content"
  82. android:text="Sebagai T"
  83. android:textStyle="bold" />
  84.  
  85. <TextView
  86. android:id="@+id/tvSebagaiT"
  87. android:layout_width="wrap_content"
  88. android:layout_height="wrap_content"
  89. android:layout_alignParentEnd="true"
  90. android:layout_alignParentRight="true"
  91. android:text="-" />
  92. </RelativeLayout>
  93.  
  94. <RelativeLayout
  95. android:layout_width="match_parent"
  96. android:layout_height="wrap_content">
  97.  
  98. <TextView
  99. android:layout_width="wrap_content"
  100. android:layout_height="wrap_content"
  101. android:text="Tanggal daftar"
  102. android:textStyle="bold" />
  103.  
  104. <TextView
  105. android:id="@+id/tvTanggalDaftar"
  106. android:layout_width="wrap_content"
  107. android:layout_height="wrap_content"
  108. android:layout_alignParentEnd="true"
  109. android:layout_alignParentRight="true"
  110. android:text="-" />
  111. </RelativeLayout>
  112. <LinearLayout
  113. android:orientation="vertical"
  114. android:layout_width="match_parent"
  115. android:layout_height="wrap_content">
  116.  
  117.  
  118. <LinearLayout
  119. android:orientation="vertical"
  120. android:layout_width="match_parent"
  121. android:layout_height="wrap_content">
  122.  
  123. <TextView
  124. android:layout_width="match_parent"
  125. android:text="Pihak 1"
  126. android:layout_height="wrap_content" />
  127. <android.support.v7.widget.RecyclerView
  128. android:id="@+id/rv_pihak1"
  129. android:layout_width="match_parent"
  130. android:layout_height="match_parent" />
  131. <TextView
  132. android:layout_width="match_parent"
  133. android:text="Pihak 2"
  134. android:layout_height="wrap_content" />
  135. <android.support.v7.widget.RecyclerView
  136. android:id="@+id/rv_pihak2"
  137. android:layout_width="match_parent"
  138. android:layout_height="match_parent" />
  139. </LinearLayout>
  140.  
  141. </LinearLayout>
  142.  
  143. <LinearLayout
  144. android:orientation="vertical"
  145. android:layout_width="match_parent"
  146. android:layout_height="wrap_content">
  147.  
  148. <TextView
  149. android:layout_width="match_parent"
  150. android:layout_height="wrap_content"
  151. android:text="Data Perkara"
  152. android:textStyle="bold"/>
  153. <TextView
  154. android:layout_width="match_parent"
  155. android:layout_height="wrap_content"
  156. android:text="Proses Perkara "/>
  157. <android.support.v7.widget.RecyclerView
  158. android:id="@+id/rv_proses"
  159. android:layout_width="match_parent"
  160. android:layout_height="match_parent" />
  161. </LinearLayout>
  162.  
  163. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement