2015-09-26 08:25:18 -04: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-08-15 09:06:21 -04: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-09-12 15:40:40 -04:00
|
|
|
android:background="@drawable/list_item_selector_background"
|
2020-04-18 14:47:22 -04:00
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp">
|
2015-09-26 08:25:18 -04:00
|
|
|
|
2020-05-07 23:03:22 -04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bookmark_icon"
|
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
android:layout_marginEnd="4dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/chapter_title"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/chapter_title"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:srcCompat="@drawable/ic_bookmark_24dp"
|
|
|
|
app:tint="?attr/colorAccent"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2017-08-15 09:05:41 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/chapter_title"
|
|
|
|
style="@style/TextAppearance.Regular.Body1"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:layout_marginTop="12dp"
|
2017-08-15 09:05:41 -04:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2020-03-07 23:00:29 -05:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-05-07 23:03:22 -04:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bookmark_icon"
|
2017-08-15 09:05:41 -04:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2020-02-21 18:43:50 -05:00
|
|
|
tools:text="Title" />
|
2015-09-26 08:25:18 -04:00
|
|
|
|
2017-08-15 09:05:41 -04:00
|
|
|
<TextView
|
2020-03-06 22:46:21 -05:00
|
|
|
android:id="@+id/chapter_description"
|
2017-08-15 09:05:41 -04:00
|
|
|
style="@style/TextAppearance.Regular.Caption"
|
2020-03-07 13:28:27 -05:00
|
|
|
android:layout_width="0dp"
|
2017-08-15 09:05:41 -04:00
|
|
|
android:layout_height="wrap_content"
|
2020-03-06 22:46:21 -05:00
|
|
|
android:layout_marginBottom="8dp"
|
2020-03-07 13:28:27 -05:00
|
|
|
android:ellipsize="end"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:singleLine="true"
|
2017-08-15 09:05:41 -04:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-04-18 14:47:22 -04:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/download_text"
|
2020-02-21 18:43:50 -05:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-03-06 22:46:21 -05:00
|
|
|
tools:text="22/02/2016 • Scanlator • Page: 45" />
|
2015-09-26 08:25:18 -04:00
|
|
|
|
2017-08-15 09:05:41 -04: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-06 22:46:21 -05:00
|
|
|
android:layout_marginBottom="8dp"
|
2017-08-15 09:05:41 -04:00
|
|
|
android:textAllCaps="true"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-02-21 18:43:50 -05:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
tools:text="DOWNLOADED" />
|
2015-11-24 12:45:53 -05:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|