47 lines
No EOL
1.9 KiB
XML
47 lines
No EOL
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout 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">
|
|
|
|
<data>
|
|
|
|
<variable
|
|
name="collection"
|
|
type="org.jellyfin.sdk.model.api.BaseItemDto" />
|
|
</data>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="12dp"
|
|
android:layout_marginBottom="24dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:foreground="@drawable/ripple_background"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
android:id="@+id/collection_image"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:adjustViewBounds="true"
|
|
android:scaleType="centerCrop"
|
|
app:baseItemImage="@{collection}"
|
|
app:layout_constraintDimensionRatio="H,16:9"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.Findroid.Image" />
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
android:text="@{collection.name}"
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle1"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/collection_image"
|
|
tools:text="Movies" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</layout> |