<?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"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="12dp"
|
android:clickable="true"
|
android:focusable="true"
|
android:foreground="?attr/selectableItemBackground"
|
app:cardBackgroundColor="@android:color/white"
|
app:cardCornerRadius="8dp"
|
app:cardElevation="1dp"
|
app:strokeColor="@color/card_stroke"
|
app:strokeWidth="1dp">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center_vertical"
|
android:minHeight="72dp"
|
android:orientation="vertical"
|
android:paddingStart="16dp"
|
android:paddingEnd="16dp"
|
android:paddingVertical="12dp">
|
|
<TextView
|
android:id="@+id/menu_title_text"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textColor="@color/text_primary"
|
android:textSize="17sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/menu_subtitle_text"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="4dp"
|
android:textColor="@color/text_secondary"
|
android:textSize="13sp" />
|
|
</LinearLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|