mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-08 11:47:24 +01:00
69 lines
2.5 KiB
XML
69 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/holder"
|
|
style="@style/Theme.Widget.CardView.Item"
|
|
android:padding="0dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="128dp"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/cover"
|
|
android:layout_width="85dp"
|
|
android:layout_height="match_parent"
|
|
android:contentDescription="@string/description_cover"
|
|
android:scaleType="centerCrop" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/manga_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:maxLines="2"
|
|
android:textAppearance="@style/TextAppearance.Medium" />
|
|
|
|
<TextView
|
|
android:id="@+id/manga_subtitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/manga_title"
|
|
android:layout_marginTop="4dp" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<Button
|
|
android:id="@+id/remove"
|
|
style="@style/Theme.Widget.Button.Error"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:text="@string/action_remove" />
|
|
|
|
<Button
|
|
android:id="@+id/resume"
|
|
style="@style/Theme.Widget.Button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_toEndOf="@id/remove"
|
|
android:text="@string/action_resume" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|