123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:background="@drawable/list_item_selector_background"
- android:paddingStart="16dp"
- android:paddingEnd="4dp">
- <com.google.android.material.imageview.ShapeableImageView
- android:id="@+id/manga_cover"
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_marginTop="8dp"
- android:layout_marginBottom="8dp"
- android:scaleType="centerCrop"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintDimensionRatio="h,1:1"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:shapeAppearance="@style/ShapeAppearanceOverlay.Cover"
- tools:src="@mipmap/ic_launcher" />
- <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="?attr/textAppearanceBodyMedium"
- app:layout_constraintBottom_toTopOf="@+id/chapter_title"
- app:layout_constraintEnd_toStartOf="@+id/download"
- app:layout_constraintStart_toEndOf="@+id/manga_cover"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintVertical_chainStyle="packed"
- tools:text="Manga title" />
- <ImageView
- android:id="@+id/bookmark_icon"
- android:layout_width="16dp"
- android:layout_height="0dp"
- android:visibility="gone"
- android:layout_marginEnd="4dp"
- app:layout_constraintStart_toStartOf="@id/manga_title"
- app:layout_constraintTop_toBottomOf="@id/manga_title"
- app:layout_constraintBottom_toBottomOf="@id/chapter_title"
- app:layout_constraintEnd_toStartOf="@id/chapter_title"
- app:srcCompat="@drawable/ic_bookmark_24dp"
- app:tint="?attr/colorAccent"
- tools:visibility="visible" />
- <TextView
- android:id="@+id/chapter_title"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:ellipsize="end"
- android:maxLines="1"
- android:textAppearance="?attr/textAppearanceBodyMedium"
- android:textColor="?android:attr/textColorSecondary"
- android:textSize="12sp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toStartOf="@+id/download"
- app:layout_constraintStart_toEndOf="@id/bookmark_icon"
- app:layout_constraintTop_toBottomOf="@+id/manga_title"
- tools:text="Chapter title" />
- <eu.kanade.tachiyomi.ui.manga.chapter.ChapterDownloadView
- android:id="@+id/download"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:paddingStart="4dp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- </androidx.constraintlayout.widget.ConstraintLayout>
|