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"
|
2020-05-20 22:30:46 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-04-22 09:14:30 -04:00
|
|
|
android:id="@+id/holder"
|
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
|
|
|
|
2020-05-20 22:30:46 -04:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2016-06-06 09:26:56 -04:00
|
|
|
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:contentDescription="@string/description_cover"
|
2020-05-20 22:30:46 -04:00
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2016-06-06 09:26:56 -04:00
|
|
|
|
2020-05-20 22:30:46 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:textAppearance="@style/TextAppearance.Medium"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/cover"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2016-06-06 09:26:56 -04:00
|
|
|
|
2020-05-20 22:30:46 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_subtitle"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/manga_title"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/cover"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_title" />
|
2016-06-06 09:26:56 -04:00
|
|
|
|
2020-05-20 22:30:46 -04:00
|
|
|
<Button
|
|
|
|
android:id="@+id/remove"
|
|
|
|
style="@style/Theme.Widget.Button.Error"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/action_remove"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/cover" />
|
2020-01-09 19:10:55 -05:00
|
|
|
|
2020-05-20 22:30:46 -04:00
|
|
|
<Button
|
|
|
|
android:id="@+id/resume"
|
|
|
|
style="@style/Theme.Widget.Button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_toEndOf="@id/remove"
|
|
|
|
android:text="@string/action_resume"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/remove" />
|
2020-01-09 19:10:55 -05:00
|
|
|
|
2020-05-20 22:30:46 -04:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2020-01-09 19:10:55 -05:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
</androidx.cardview.widget.CardView>
|