40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:padding="8dp"
|
||
|
|
android:background="@drawable/card_bg"
|
||
|
|
android:focusable="true"
|
||
|
|
android:clickable="true"
|
||
|
|
android:focusableInTouchMode="true">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/iv_cover"
|
||
|
|
android:layout_width="200dp"
|
||
|
|
android:layout_height="120dp"
|
||
|
|
android:scaleType="centerCrop"
|
||
|
|
android:background="@color/surface" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv_title"
|
||
|
|
android:layout_width="200dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:ellipsize="end"
|
||
|
|
android:maxLines="1"
|
||
|
|
android:padding="4dp"
|
||
|
|
android:textColor="@color/text_primary"
|
||
|
|
android:textSize="14sp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv_category"
|
||
|
|
android:layout_width="200dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:ellipsize="end"
|
||
|
|
android:maxLines="1"
|
||
|
|
android:padding="4dp"
|
||
|
|
android:textColor="@color/text_secondary"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
|
||
|
|
</LinearLayout>
|