2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-14 13:37:15 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-11-05 13:53:07 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-05-14 13:37:15 +00:00
|
|
|
android:layout_margin="2dp"
|
2020-01-06 05:34:09 +00:00
|
|
|
android:background="?rectSelector"
|
2019-12-07 15:43:27 +00:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2020-05-14 13:37:15 +00:00
|
|
|
android:padding="4dp"
|
2018-11-05 13:53:07 +00:00
|
|
|
tools:ignore="MissingPrefix">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-05-14 13:37:15 +00:00
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
android:id="@+id/imageContainer"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:cardCornerRadius="8dp"
|
|
|
|
app:layout_constraintDimensionRatio="1:1"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-05-14 13:37:15 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2020-02-25 13:15:23 +00:00
|
|
|
android:id="@+id/image"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-12-07 15:43:27 +00:00
|
|
|
android:layout_height="match_parent"
|
2020-02-25 13:15:23 +00:00
|
|
|
android:scaleType="centerCrop"
|
|
|
|
tools:ignore="ContentDescription"
|
|
|
|
tools:srcCompat="@tools:sample/backgrounds/scenic" />
|
2018-11-05 13:53:07 +00:00
|
|
|
|
2020-05-14 13:37:15 +00:00
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxLines="2"
|
2020-05-17 16:48:36 +00:00
|
|
|
android:paddingHorizontal="8dp"
|
2020-05-14 13:37:15 +00:00
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="4dp"
|
|
|
|
android:textAppearance="@style/TextViewSubtitle1"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textStyle="bold"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/imageContainer"
|
|
|
|
tools:text="@tools:sample/lorem/random" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-05-14 13:37:15 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/text"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingHorizontal="8dp"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/title"
|
|
|
|
tools:text="@tools:sample/lorem/random" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
|
2020-05-14 13:37:15 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|