68 lines
2.6 KiB
XML
68 lines
2.6 KiB
XML
|
<?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="8dp"
|
||
|
android:paddingEnd="16dp">
|
||
|
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/thumbnail"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="0dp"
|
||
|
android:paddingHorizontal="8dp"
|
||
|
app:layout_constraintDimensionRatio="1:1"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
tools:ignore="ContentDescription"
|
||
|
tools:src="@mipmap/ic_launcher" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
style="?attr/textAppearanceBodyMedium"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingStart="0dp"
|
||
|
android:paddingEnd="8dp"
|
||
|
android:ellipsize="middle"
|
||
|
android:maxLines="1"
|
||
|
app:layout_constraintStart_toEndOf="@+id/thumbnail"
|
||
|
app:layout_constraintEnd_toStartOf="@id/checkbox"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
app:layout_constraintBottom_toTopOf="@id/description"
|
||
|
app:layout_constraintVertical_chainStyle="packed"
|
||
|
tools:text="Source Name (LN)" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/description"
|
||
|
style="?attr/textAppearanceBodySmall"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:ellipsize="end"
|
||
|
android:maxLines="1"
|
||
|
app:layout_constraintStart_toEndOf="@+id/thumbnail"
|
||
|
app:layout_constraintEnd_toStartOf="@id/checkbox"
|
||
|
app:layout_constraintTop_toBottomOf="@id/title"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
tools:text="999 non-library manga in database" />
|
||
|
|
||
|
<CheckBox
|
||
|
android:id="@+id/checkbox"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="match_parent"
|
||
|
android:paddingStart="16dp"
|
||
|
android:paddingEnd="16dp"
|
||
|
android:clickable="false"
|
||
|
android:background="@android:color/transparent"
|
||
|
android:longClickable="false"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintDimensionRatio="1:2"
|
||
|
/>
|
||
|
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|