2015-09-26 20:25:18 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-22 07:43:50 +08:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-08-15 21:06:21 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
|
|
android:background="?attr/selectable_list_drawable">
|
2015-09-26 20:25:18 +08:00
|
|
|
|
2017-08-15 21:05:41 +08:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/chapter_title"
|
|
|
|
style="@style/TextAppearance.Regular.Body1"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="12dp"
|
2017-08-15 21:05:41 +08:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2020-02-22 07:43:50 +08:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/chapter_menu"
|
2020-01-10 08:10:55 +08:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2017-08-15 21:05:41 +08:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2020-02-22 07:43:50 +08:00
|
|
|
tools:text="Title" />
|
2015-09-26 20:25:18 +08:00
|
|
|
|
2017-08-15 21:05:41 +08:00
|
|
|
<TextView
|
2020-03-07 11:46:21 +08:00
|
|
|
android:id="@+id/chapter_description"
|
2017-08-15 21:05:41 +08:00
|
|
|
style="@style/TextAppearance.Regular.Caption"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-03-07 11:46:21 +08:00
|
|
|
android:layout_marginBottom="8dp"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:layout_marginStart="16dp"
|
2017-08-15 21:05:41 +08:00
|
|
|
android:ellipsize="marquee"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:singleLine="true"
|
2017-08-15 21:05:41 +08:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-02-22 07:43:50 +08:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-03-07 11:46:21 +08:00
|
|
|
tools:text="22/02/2016 • Scanlator • Page: 45" />
|
2015-09-26 20:25:18 +08:00
|
|
|
|
2020-02-28 07:58:36 +08:00
|
|
|
<ImageButton
|
2015-12-01 03:52:12 +08:00
|
|
|
android:id="@+id/chapter_menu"
|
2017-08-15 21:05:41 +08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:layout_marginEnd="8dp"
|
2020-02-28 07:58:36 +08:00
|
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
|
|
android:contentDescription="@string/action_menu"
|
|
|
|
android:padding="8dp"
|
2020-02-22 07:43:50 +08:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2020-02-28 07:58:36 +08:00
|
|
|
app:layout_constraintBottom_toTopOf="@+id/download_text"
|
|
|
|
app:srcCompat="@drawable/ic_more_vert_black_24dp"
|
|
|
|
app:tint="?attr/icon_color" />
|
2015-12-02 15:08:04 +08:00
|
|
|
|
2017-08-15 21:05:41 +08:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/download_text"
|
|
|
|
style="@style/TextAppearance.Regular.Caption.Hint"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-03-07 11:46:21 +08:00
|
|
|
android:layout_marginBottom="8dp"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:layout_marginEnd="16dp"
|
2017-08-15 21:05:41 +08:00
|
|
|
android:textAllCaps="true"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-02-22 07:43:50 +08:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
tools:text="DOWNLOADED" />
|
2015-11-25 01:45:53 +08:00
|
|
|
|
2020-01-06 00:29:27 +08:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|