2016-01-18 12:04:07 -05: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 07:06:40 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/material_component_lists_two_line_height"
|
2020-09-12 15:40:40 -04:00
|
|
|
android:background="@drawable/list_item_selector_background"
|
2021-01-03 11:01:23 -05:00
|
|
|
android:paddingEnd="8dp">
|
2016-01-18 12:04:07 -05:00
|
|
|
|
2017-05-08 07:06:40 -04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/manga_cover"
|
|
|
|
android:layout_width="56dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:paddingStart="16dp"
|
2020-05-16 16:35:40 -04:00
|
|
|
android:paddingTop="8dp"
|
2017-05-08 07:06:40 -04:00
|
|
|
android:paddingEnd="0dp"
|
2020-05-16 16:35:40 -04:00
|
|
|
android:paddingBottom="8dp"
|
2017-05-08 07:06:40 -04:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-01-09 19:10:55 -05:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2017-05-08 07:06:40 -04:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2020-02-04 22:24:16 -05:00
|
|
|
tools:src="@mipmap/ic_launcher" />
|
2016-02-18 11:23:17 -05:00
|
|
|
|
2017-05-08 07:06:40 -04: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"
|
|
|
|
android:textAppearance="@style/TextAppearance.Regular.Body1"
|
|
|
|
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 07:06:40 -04:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_chainStyle="packed"
|
|
|
|
tools:text="Manga title" />
|
2016-01-18 12:04:07 -05:00
|
|
|
|
2017-05-08 07:06:40 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/chapter_title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textAppearance="@style/TextAppearance.Regular.Caption"
|
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"
|
2020-01-09 19:10:55 -05:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/manga_cover"
|
2017-05-08 07:06:40 -04:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_title"
|
|
|
|
tools:text="Chapter title" />
|
2016-02-18 11:23:17 -05:00
|
|
|
|
2020-12-27 10:20:14 -05:00
|
|
|
<eu.kanade.tachiyomi.ui.manga.chapter.ChapterDownloadView
|
|
|
|
android:id="@+id/download"
|
2017-05-08 07:06:40 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-12-27 10:20:14 -05:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2017-05-08 07:06:40 -04:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-12-27 10:20:14 -05:00
|
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
2016-01-18 12:04:07 -05:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|