|
@@ -1,102 +1,113 @@
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
-<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
|
+<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
+ android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
- android:paddingTop="8dp">
|
|
|
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
|
+ app:cardBackgroundColor="?android:attr/colorBackground"
|
|
|
|
+ app:cardElevation="0dp">
|
|
|
|
|
|
- <ImageView
|
|
|
|
- android:id="@+id/reorder"
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
- android:layout_alignParentStart="true"
|
|
|
|
- android:layout_gravity="start"
|
|
|
|
- android:padding="16dp"
|
|
|
|
- android:scaleType="center"
|
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
|
- app:layout_constraintTop_toTopOf="parent"
|
|
|
|
- app:srcCompat="@drawable/ic_drag_handle_24dp"
|
|
|
|
- app:tint="?android:attr/textColorHint" />
|
|
|
|
|
|
+ android:background="@drawable/list_item_selector_background">
|
|
|
|
|
|
- <TextView
|
|
|
|
- android:id="@+id/manga_full_title"
|
|
|
|
- android:layout_width="0dp"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_marginEnd="8dp"
|
|
|
|
- android:layout_toEndOf="@id/reorder"
|
|
|
|
- android:ellipsize="end"
|
|
|
|
- android:maxLines="1"
|
|
|
|
- android:textAppearance="@style/TextAppearance.Regular.Body1"
|
|
|
|
- app:layout_constraintEnd_toStartOf="@+id/download_progress_text"
|
|
|
|
- app:layout_constraintStart_toEndOf="@+id/reorder"
|
|
|
|
- app:layout_constraintTop_toTopOf="parent"
|
|
|
|
- tools:text="Manga title" />
|
|
|
|
|
|
+ <ImageView
|
|
|
|
+ android:id="@+id/reorder"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_alignParentStart="true"
|
|
|
|
+ android:layout_gravity="start"
|
|
|
|
+ android:padding="16dp"
|
|
|
|
+ android:scaleType="center"
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
+ app:srcCompat="@drawable/ic_drag_handle_24dp"
|
|
|
|
+ app:tint="?android:attr/textColorHint"
|
|
|
|
+ tools:ignore="ContentDescription" />
|
|
|
|
|
|
- <TextView
|
|
|
|
- android:id="@+id/chapter_title"
|
|
|
|
- android:layout_width="0dp"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_marginTop="4dp"
|
|
|
|
- android:layout_marginEnd="8dp"
|
|
|
|
- android:layout_toEndOf="@id/reorder"
|
|
|
|
- android:ellipsize="end"
|
|
|
|
- android:maxLines="1"
|
|
|
|
- android:textAppearance="@style/TextAppearance.Regular.Caption"
|
|
|
|
- app:layout_constraintEnd_toStartOf="@+id/manga_source"
|
|
|
|
- app:layout_constraintStart_toStartOf="@+id/manga_full_title"
|
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/manga_full_title"
|
|
|
|
- tools:text="Chapter Title" />
|
|
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/manga_full_title"
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginEnd="8dp"
|
|
|
|
+ android:layout_toEndOf="@id/reorder"
|
|
|
|
+ android:ellipsize="end"
|
|
|
|
+ android:maxLines="1"
|
|
|
|
+ android:textAppearance="@style/TextAppearance.Regular.Body1"
|
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/download_progress_text"
|
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/reorder"
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
+ tools:text="Manga title" />
|
|
|
|
|
|
- <com.google.android.material.progressindicator.LinearProgressIndicator
|
|
|
|
- android:id="@+id/download_progress"
|
|
|
|
- android:layout_width="0dp"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_marginTop="4dp"
|
|
|
|
- android:layout_marginBottom="4dp"
|
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
- app:layout_constraintEnd_toStartOf="@+id/menu"
|
|
|
|
- app:layout_constraintStart_toEndOf="@+id/reorder"
|
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/chapter_title" />
|
|
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/chapter_title"
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginTop="2dp"
|
|
|
|
+ android:layout_marginEnd="8dp"
|
|
|
|
+ android:layout_toEndOf="@id/reorder"
|
|
|
|
+ android:ellipsize="end"
|
|
|
|
+ android:maxLines="1"
|
|
|
|
+ android:textAppearance="@style/TextAppearance.Regular.Caption"
|
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/manga_source"
|
|
|
|
+ app:layout_constraintStart_toStartOf="@+id/manga_full_title"
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/manga_full_title"
|
|
|
|
+ tools:text="Chapter Title" />
|
|
|
|
|
|
- <TextView
|
|
|
|
- android:id="@+id/download_progress_text"
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_toEndOf="@id/manga_full_title"
|
|
|
|
- android:maxLines="1"
|
|
|
|
- android:textAppearance="@style/TextAppearance.Regular.Caption.Hint"
|
|
|
|
- app:layout_constraintBottom_toBottomOf="@+id/manga_full_title"
|
|
|
|
- app:layout_constraintEnd_toStartOf="@+id/menu"
|
|
|
|
- app:layout_constraintTop_toTopOf="@+id/manga_full_title"
|
|
|
|
- tools:text="(0/10)" />
|
|
|
|
|
|
+ <com.google.android.material.progressindicator.LinearProgressIndicator
|
|
|
|
+ android:id="@+id/download_progress"
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
|
+ android:layout_marginBottom="4dp"
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/menu"
|
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/reorder"
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/chapter_title" />
|
|
|
|
|
|
- <TextView
|
|
|
|
- android:id="@+id/manga_source"
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_toEndOf="@id/chapter_title"
|
|
|
|
- android:maxLines="1"
|
|
|
|
- android:textAppearance="@style/TextAppearance.Regular.Caption.Hint"
|
|
|
|
- app:layout_constraintBottom_toBottomOf="@+id/chapter_title"
|
|
|
|
- app:layout_constraintEnd_toStartOf="@+id/menu"
|
|
|
|
- app:layout_constraintTop_toTopOf="@+id/chapter_title"
|
|
|
|
- tools:text="Manga Source" />
|
|
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/download_progress_text"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_toEndOf="@id/manga_full_title"
|
|
|
|
+ android:maxLines="1"
|
|
|
|
+ android:textAppearance="@style/TextAppearance.Regular.Caption.Hint"
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/manga_full_title"
|
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/menu"
|
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/manga_full_title"
|
|
|
|
+ tools:text="0/10" />
|
|
|
|
|
|
- <ImageButton
|
|
|
|
- android:id="@+id/menu"
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_toEndOf="@id/download_progress_text"
|
|
|
|
- android:background="@drawable/ripple_regular"
|
|
|
|
- android:contentDescription="@string/action_menu"
|
|
|
|
- android:paddingHorizontal="10dp"
|
|
|
|
- android:paddingVertical="16dp"
|
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
- app:layout_constraintTop_toTopOf="parent"
|
|
|
|
- app:srcCompat="@drawable/ic_overflow_24dp"
|
|
|
|
- app:tint="?attr/colorOnBackground" />
|
|
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/manga_source"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_toEndOf="@id/chapter_title"
|
|
|
|
+ android:maxLines="1"
|
|
|
|
+ android:textAppearance="@style/TextAppearance.Regular.Caption.Hint"
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/chapter_title"
|
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/menu"
|
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/chapter_title"
|
|
|
|
+ tools:text="Manga Source" />
|
|
|
|
+
|
|
|
|
+ <ImageButton
|
|
|
|
+ android:id="@+id/menu"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_toEndOf="@id/download_progress_text"
|
|
|
|
+ android:background="@drawable/ripple_regular"
|
|
|
|
+ android:contentDescription="@string/action_menu"
|
|
|
|
+ android:paddingHorizontal="10dp"
|
|
|
|
+ android:paddingVertical="16dp"
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
+ app:srcCompat="@drawable/ic_overflow_24dp"
|
|
|
|
+ app:tint="?attr/colorOnBackground" />
|
|
|
|
+
|
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
-</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
+</com.google.android.material.card.MaterialCardView>
|