59 lines
2.0 KiB
XML
59 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.google.android.material.card.MaterialCardView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
app:cardElevation="4dp"
|
|
app:cardCornerRadius="12dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:padding="16dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/ivThumbnail"
|
|
android:layout_width="80dp"
|
|
android:layout_height="80dp"
|
|
android:scaleType="centerCrop"
|
|
android:background="@android:color/darker_gray"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:layout_marginStart="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tvHistoryNama"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Nama"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvHistoryTanggal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Tanggal"
|
|
android:textSize="14sp"
|
|
android:layout_marginTop="4dp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvHistoryLokasi"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Lokasi"
|
|
android:textSize="12sp"
|
|
android:layout_marginTop="4dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView> |