2016-06-06 09:26:56 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-05 11:29:27 -05:00
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-05-16 04:18:46 -04:00
|
|
|
style="@style/Theme.Widget.CardView.Item"
|
|
|
|
android:padding="0dp">
|
2016-06-06 09:26:56 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2020-04-21 18:41:05 -04:00
|
|
|
android:layout_height="128dp"
|
2016-06-06 09:26:56 -04:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/cover"
|
2020-04-21 18:41:05 -04:00
|
|
|
android:layout_width="85dp"
|
2016-06-06 09:26:56 -04:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clickable="true"
|
|
|
|
android:contentDescription="@string/description_cover"
|
2020-04-21 18:41:05 -04:00
|
|
|
android:focusable="true"
|
2017-05-16 04:18:46 -04:00
|
|
|
android:scaleType="centerCrop" />
|
2016-06-06 09:26:56 -04: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"
|
2017-09-29 02:34:13 -04:00
|
|
|
android:padding="16dp">
|
2016-06-06 09:26:56 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxLines="2"
|
2017-05-16 04:18:46 -04:00
|
|
|
android:textAppearance="@style/TextAppearance.Medium.Title" />
|
2016-06-06 09:26:56 -04:00
|
|
|
|
|
|
|
<TextView
|
2020-04-21 18:41:05 -04:00
|
|
|
android:id="@+id/manga_subtitle"
|
2016-06-06 09:26:56 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-21 18:41:05 -04:00
|
|
|
android:layout_below="@id/manga_title" />
|
2016-06-06 09:26:56 -04:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-09-29 02:34:13 -04:00
|
|
|
<Button
|
2016-06-06 09:26:56 -04:00
|
|
|
android:id="@+id/remove"
|
2020-03-22 18:43:16 -04:00
|
|
|
style="@style/Theme.Widget.Button.Error"
|
2016-06-06 09:26:56 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
2017-09-29 02:34:13 -04:00
|
|
|
android:text="@string/action_remove" />
|
2016-06-06 09:26:56 -04:00
|
|
|
|
2017-09-29 02:34:13 -04:00
|
|
|
<Button
|
2016-06-06 09:26:56 -04:00
|
|
|
android:id="@+id/resume"
|
2020-03-22 18:43:16 -04:00
|
|
|
style="@style/Theme.Widget.Button"
|
2016-06-06 09:26:56 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_toEndOf="@id/remove"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:text="@string/action_resume" />
|
2020-01-09 19:10:55 -05:00
|
|
|
|
2016-06-06 09:26:56 -04:00
|
|
|
</RelativeLayout>
|
2020-01-09 19:10:55 -05:00
|
|
|
|
2016-06-06 09:26:56 -04:00
|
|
|
</LinearLayout>
|
2020-01-09 19:10:55 -05:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
</androidx.cardview.widget.CardView>
|