2020-04-12 17:17:51 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-01-30 14:59:11 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-07-17 17:53:44 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:layout_width="match_parent"
|
2021-01-30 14:59:11 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:foreground="?attr/selectableItemBackground"
|
|
|
|
android:orientation="vertical">
|
2020-04-12 17:17:51 +02:00
|
|
|
|
2021-01-30 14:59:11 +01:00
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
android:id="@+id/item_click_layout"
|
2020-08-08 20:01:21 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-01-30 14:59:11 +01:00
|
|
|
android:layout_marginStart="12dp"
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
android:layout_marginEnd="12dp"
|
|
|
|
android:layout_marginBottom="12dp"
|
|
|
|
app:cardCornerRadius="16dp"
|
|
|
|
app:cardElevation="4dp">
|
2020-04-12 17:17:51 +02:00
|
|
|
|
2021-01-30 14:59:11 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
2020-08-08 20:01:21 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:layout_height="wrap_content"
|
2021-01-30 14:59:11 +01:00
|
|
|
android:adjustViewBounds="true"
|
|
|
|
android:contentDescription="@string/icon"
|
|
|
|
tools:src="@drawable/default_icon" />
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
2020-04-12 17:17:51 +02:00
|
|
|
|
2021-01-30 14:59:11 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="20dp"
|
|
|
|
android:layout_marginEnd="20dp"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textSize="12sp"
|
|
|
|
tools:text="Title" />
|
2020-04-12 17:17:51 +02:00
|
|
|
|
2021-01-30 14:59:11 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_subtitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="20dp"
|
|
|
|
android:layout_marginEnd="20dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textSize="12sp"
|
|
|
|
tools:text="Subtitle" />
|
|
|
|
</LinearLayout>
|