75 lines
2.5 KiB
XML
75 lines
2.5 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout 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:orientation="horizontal"
|
||
|
|
android:padding="8dp"
|
||
|
|
android:gravity="center_vertical">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/imageViewCover"
|
||
|
|
android:layout_width="40dp"
|
||
|
|
android:layout_height="55dp"
|
||
|
|
android:layout_marginEnd="8dp"
|
||
|
|
android:scaleType="centerCrop"
|
||
|
|
android:src="@drawable/sample_anime_cover"
|
||
|
|
android:background="@drawable/rounded_mask"
|
||
|
|
android:clipToOutline="true" />
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="2"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/textViewTitle"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Anime Title"
|
||
|
|
android:textColor="@color/textPrimary"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:maxLines="2"
|
||
|
|
android:textSize="14sp"
|
||
|
|
android:ellipsize="end" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/textViewProgress"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="5 / 12"
|
||
|
|
android:textColor="@color/textPrimary"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/textViewScore"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="0.8"
|
||
|
|
android:text="8.5"
|
||
|
|
android:textColor="@color/textPrimary"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textSize="14sp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/textViewType"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="0.8"
|
||
|
|
android:text="TV"
|
||
|
|
android:textColor="@color/textPrimary"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/buttonOptions"
|
||
|
|
android:layout_width="24dp"
|
||
|
|
android:layout_height="24dp"
|
||
|
|
android:layout_marginStart="8dp"
|
||
|
|
android:src="@drawable/ic_more_vert"
|
||
|
|
android:contentDescription="Options"
|
||
|
|
app:tint="@color/textPrimary" />
|
||
|
|
</LinearLayout>
|