27 lines
897 B
XML
27 lines
897 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:padding="8dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/textViewTitle"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Manga 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="Progress: 45 / 100"
|
||
|
|
android:textColor="@color/textPrimary"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
</LinearLayout>
|