2016-06-06 09:26:56 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-01-27 18:28:02 -05:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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-08-02 10:29:04 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-04-22 09:14:30 -04:00
|
|
|
android:id="@+id/holder"
|
2021-01-27 18:28:02 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="80dp"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:orientation="horizontal">
|
2016-06-06 09:26:56 -04:00
|
|
|
|
2021-01-27 18:28:02 -05:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/cover"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:contentDescription="@string/description_cover"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintDimensionRatio="h,3:2"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:src="@mipmap/ic_launcher" />
|
2016-06-06 09:26:56 -04:00
|
|
|
|
2021-01-27 18:28:02 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/remove"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/cover"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
2016-06-06 09:26:56 -04:00
|
|
|
|
2021-01-27 18:28:02 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_title"
|
|
|
|
android:layout_width="match_parent"
|
2020-05-20 22:30:46 -04:00
|
|
|
android:layout_height="wrap_content"
|
2021-01-27 18:28:02 -05:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:textAppearance="@style/TextAppearance.Medium"
|
|
|
|
tools:text="Title" />
|
2016-06-06 09:26:56 -04:00
|
|
|
|
2021-01-27 18:28:02 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_subtitle"
|
|
|
|
android:layout_width="match_parent"
|
2020-05-20 22:30:46 -04:00
|
|
|
android:layout_height="wrap_content"
|
2021-01-27 18:28:02 -05:00
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
tools:text="Subtitle" />
|
2016-06-06 09:26:56 -04:00
|
|
|
|
2021-01-27 18:28:02 -05:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/remove"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-05-22 11:55:05 -04:00
|
|
|
android:background="@drawable/ripple_regular"
|
2021-01-27 18:28:02 -05:00
|
|
|
android:contentDescription="@string/action_resume"
|
|
|
|
android:padding="8dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/resume"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:srcCompat="@drawable/ic_delete_24dp"
|
|
|
|
app:tint="?android:attr/textColorPrimary" />
|
2020-05-20 22:35:25 -04:00
|
|
|
|
2021-01-27 18:28:02 -05:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/resume"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-05-22 11:55:05 -04:00
|
|
|
android:background="@drawable/ripple_regular"
|
2021-01-27 18:28:02 -05:00
|
|
|
android:contentDescription="@string/action_resume"
|
|
|
|
android:padding="8dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:srcCompat="@drawable/ic_play_arrow_24dp"
|
|
|
|
app:tint="?android:attr/textColorPrimary" />
|
2020-01-09 19:10:55 -05:00
|
|
|
|
2021-01-27 18:28:02 -05:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|