You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.1 KiB
XML
83 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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:tools="http://schemas.android.com/tools"
|
|
style="@style/Widget.Material3.CardView.Outlined"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
android:id="@+id/imageView_icon"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_marginVertical="20dp"
|
|
android:layout_marginStart="16dp"
|
|
android:background="?colorPrimary"
|
|
android:scaleType="center"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.Kotatsu.Circle"
|
|
app:tint="?colorOnPrimary"
|
|
tools:src="@drawable/ic_shikimori" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="16dp"
|
|
android:layout_toEndOf="@id/imageView_cover"
|
|
android:singleLine="true"
|
|
android:textAppearance="@style/TextAppearance.Material3.TitleSmall"
|
|
app:layout_constraintBottom_toTopOf="@id/textView_status"
|
|
app:layout_constraintEnd_toStartOf="@id/imageView_cover"
|
|
app:layout_constraintStart_toEndOf="@id/imageView_icon"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintVertical_chainStyle="packed"
|
|
tools:text="@string/shikimori" />
|
|
|
|
<RatingBar
|
|
android:id="@+id/ratingBar"
|
|
style="?ratingBarStyleSmall"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:isIndicator="true"
|
|
android:max="1"
|
|
android:layout_marginStart="6dp"
|
|
android:numStars="5"
|
|
app:layout_constraintBottom_toBottomOf="@id/textView_status"
|
|
app:layout_constraintStart_toEndOf="@id/textView_status"
|
|
app:layout_constraintTop_toTopOf="@id/textView_status" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="4dp"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toEndOf="@id/imageView_icon"
|
|
app:layout_constraintTop_toBottomOf="@id/textView_title"
|
|
tools:text="Reading" />
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView_cover"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:scaleType="centerCrop"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintDimensionRatio="1:1"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:src="@tools:sample/backgrounds/scenic[7]" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|