2016-01-18 18:04:07 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-21 18:43:50 -05:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-05-08 13:06:40 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2021-05-22 21:10:41 +07:00
|
|
|
android:layout_height="56dp"
|
2020-09-12 15:40:40 -04:00
|
|
|
android:background="@drawable/list_item_selector_background"
|
2021-10-03 23:32:04 +07:00
|
|
|
android:paddingStart="16dp"
|
2021-01-03 23:37:56 -05:00
|
|
|
android:paddingEnd="4dp">
|
2016-01-18 18:04:07 +01:00
|
|
|
|
2021-08-31 22:35:52 -04:00
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
2017-05-08 13:06:40 +02:00
|
|
|
android:id="@+id/manga_cover"
|
2021-01-28 00:28:02 +01:00
|
|
|
android:layout_width="0dp"
|
2017-05-08 13:06:40 +02:00
|
|
|
android:layout_height="0dp"
|
2021-01-28 00:28:02 +01:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
2021-04-28 19:32:00 +07:00
|
|
|
android:scaleType="centerCrop"
|
2017-05-08 13:06:40 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2021-01-28 00:28:02 +01:00
|
|
|
app:layout_constraintDimensionRatio="h,1:1"
|
2020-01-09 19:10:55 -05:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2017-05-08 13:06:40 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2021-08-31 22:35:52 -04:00
|
|
|
app:shapeAppearance="@style/ShapeAppearanceOverlay.Cover"
|
2020-02-04 22:24:16 -05:00
|
|
|
tools:src="@mipmap/ic_launcher" />
|
2016-02-18 17:23:17 +01:00
|
|
|
|
2017-05-08 13:06:40 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2021-10-18 11:05:54 -03:00
|
|
|
android:textAppearance="?attr/textAppearanceBody2"
|
2017-05-08 13:06:40 +02:00
|
|
|
app:layout_constraintBottom_toTopOf="@+id/chapter_title"
|
2020-12-27 10:20:14 -05:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/download"
|
2020-02-21 18:43:50 -05:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/manga_cover"
|
2017-05-08 13:06:40 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_chainStyle="packed"
|
|
|
|
tools:text="Manga title" />
|
2016-01-18 18:04:07 +01:00
|
|
|
|
2021-10-01 06:11:31 -06:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bookmark_icon"
|
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_marginEnd="4dp"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/manga_title"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/manga_title"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/chapter_title"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/chapter_title"
|
|
|
|
app:srcCompat="@drawable/ic_bookmark_24dp"
|
|
|
|
app:tint="?attr/colorAccent"
|
|
|
|
tools:visibility="visible"
|
|
|
|
/>
|
|
|
|
|
2017-05-08 13:06:40 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/chapter_title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2021-10-03 23:32:04 +07:00
|
|
|
android:textAppearance="?attr/textAppearanceBody2"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="12sp"
|
2020-02-21 18:43:50 -05:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-12-27 10:20:14 -05:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/download"
|
2021-10-01 06:11:31 -06:00
|
|
|
app:layout_constraintStart_toEndOf="@id/bookmark_icon"
|
2017-05-08 13:06:40 +02:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_title"
|
|
|
|
tools:text="Chapter title" />
|
2016-02-18 17:23:17 +01:00
|
|
|
|
2020-12-27 10:20:14 -05:00
|
|
|
<eu.kanade.tachiyomi.ui.manga.chapter.ChapterDownloadView
|
|
|
|
android:id="@+id/download"
|
2017-05-08 13:06:40 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-01-03 23:37:56 -05:00
|
|
|
android:paddingStart="4dp"
|
2017-05-08 13:06:40 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2021-05-22 12:02:49 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2016-01-18 18:04:07 +01:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|