mihon/app/src/main/res/layout/history_item.xml

69 lines
2.5 KiB
XML
Raw Normal View History

2016-06-06 15:26:56 +02:00
<?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">
2016-06-06 15:26:56 +02:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="128dp"
2016-06-06 15:26:56 +02:00
android:orientation="horizontal">
<ImageView
android:id="@+id/cover"
android:layout_width="85dp"
2016-06-06 15:26:56 +02:00
android:layout_height="match_parent"
android:contentDescription="@string/description_cover"
android:scaleType="centerCrop" />
2016-06-06 15:26:56 +02:00
<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">
2016-06-06 15:26:56 +02:00
<TextView
android:id="@+id/manga_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
2016-06-06 15:26:56 +02:00
android:maxLines="2"
2020-04-24 16:22:05 +02:00
android:textAppearance="@style/TextAppearance.Medium" />
2016-06-06 15:26:56 +02:00
<TextView
android:id="@+id/manga_subtitle"
2016-06-06 15:26:56 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-04-24 16:22:05 +02:00
android:layout_below="@id/manga_title"
android:layout_marginTop="4dp" />
2016-06-06 15:26:56 +02:00
</RelativeLayout>
<Button
2016-06-06 15:26:56 +02:00
android:id="@+id/remove"
2020-03-22 23:43:16 +01:00
style="@style/Theme.Widget.Button.Error"
2016-06-06 15:26:56 +02:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="@string/action_remove" />
2016-06-06 15:26:56 +02:00
<Button
2016-06-06 15:26:56 +02:00
android:id="@+id/resume"
2020-03-22 23:43:16 +01:00
style="@style/Theme.Widget.Button"
2016-06-06 15:26:56 +02:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_toEndOf="@id/remove"
2020-02-22 00:43:50 +01:00
android:text="@string/action_resume" />
2016-06-06 15:26:56 +02:00
</RelativeLayout>
2016-06-06 15:26:56 +02:00
</LinearLayout>
</androidx.cardview.widget.CardView>