document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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. android:layout_weight="1"
  8. android:orientation="vertical">
  9.  
  10. <androidx.cardview.widget.CardView
  11. android:layout_width="match_parent"
  12. android:layout_height="150dp"
  13. app:cardCornerRadius="8dp">
  14.  
  15. <com.androidnetworking.widget.ANImageView
  16. android:id="@+id/gm"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:adjustViewBounds="true"
  20. android:background="@color/abu_abu"
  21. android:scaleType="centerCrop"
  22. />
  23. </androidx.cardview.widget.CardView>
  24.  
  25. <TextView
  26. android:id="@+id/textView"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:layout_marginTop="15dp"
  30. android:text="Judul"
  31. android:textColor="@android:color/black"
  32. android:textSize="16sp"
  33. android:textStyle="bold" />
  34.  
  35.  
  36. <LinearLayout
  37. android:layout_width="match_parent"
  38. android:layout_height="match_parent"
  39. android:gravity="bottom"
  40. android:orientation="horizontal">
  41.  
  42. <ImageView
  43. android:id="@+id/imageView2"
  44. android:layout_width="17dp"
  45. android:layout_height="17dp"
  46. android:layout_marginRight="10dp"
  47. android:tint="@color/abu_abu"
  48. app:srcCompat="@drawable/ic_date_range_black"
  49. tools:ignore="VectorDrawableCompat" />
  50.  
  51. <TextView
  52. android:id="@+id/textView2"
  53. android:layout_width="wrap_content"
  54. android:layout_height="wrap_content"
  55. android:layout_gravity="bottom"
  56. android:text="Deskripsi"
  57. android:textColor="@color/abu_abu"
  58. android:textSize="12sp" />
  59.  
  60. </LinearLayout>
  61.  
  62. </LinearLayout>
');