2015-09-26 14:25:18 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-22 00:43:50 +01:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-08-15 15:06:21 +02: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"
|
2020-03-12 00:08:57 +01:00
|
|
|
android:background="@drawable/list_item_selector"
|
2020-03-08 20:21:16 +01:00
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:paddingStart="16dp">
|
2015-09-26 14:25:18 +02:00
|
|
|
|
2017-08-15 15:05:41 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/chapter_title"
|
|
|
|
style="@style/TextAppearance.Regular.Body1"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:layout_marginTop="12dp"
|
2017-08-15 15:05:41 +02:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2020-03-08 05:00:29 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-01-10 01:10:55 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2017-08-15 15:05:41 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2020-02-22 00:43:50 +01:00
|
|
|
tools:text="Title" />
|
2015-09-26 14:25:18 +02:00
|
|
|
|
2017-08-15 15:05:41 +02:00
|
|
|
<TextView
|
2020-03-07 04:46:21 +01:00
|
|
|
android:id="@+id/chapter_description"
|
2017-08-15 15:05:41 +02:00
|
|
|
style="@style/TextAppearance.Regular.Caption"
|
2020-03-07 19:28:27 +01:00
|
|
|
android:layout_width="0dp"
|
2017-08-15 15:05:41 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-03-07 04:46:21 +01:00
|
|
|
android:layout_marginBottom="8dp"
|
2020-03-07 19:28:27 +01:00
|
|
|
android:ellipsize="end"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:singleLine="true"
|
2020-03-07 19:28:27 +01:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/download_text"
|
2017-08-15 15:05:41 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-02-22 00:43:50 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-03-07 04:46:21 +01:00
|
|
|
tools:text="22/02/2016 • Scanlator • Page: 45" />
|
2015-09-26 14:25:18 +02:00
|
|
|
|
2017-08-15 15:05:41 +02: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 04:46:21 +01:00
|
|
|
android:layout_marginBottom="8dp"
|
2017-08-15 15:05:41 +02:00
|
|
|
android:textAllCaps="true"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-02-22 00:43:50 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
tools:text="DOWNLOADED" />
|
2015-11-24 18:45:53 +01:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|