2022-02-01 23:38:08 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2025-05-06 10:41:07 +02:00
|
|
|
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-02-01 23:38:08 +03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2025-05-06 10:41:07 +02:00
|
|
|
app:cardCornerRadius="24dp"
|
|
|
|
app:cardElevation="4dp"
|
|
|
|
app:cardBackgroundColor="?attr/colorSurface">
|
2022-02-01 23:38:08 +03:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/description"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
2025-05-06 10:41:07 +02:00
|
|
|
android:textColor="?attr/colorOnSurface"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:textAppearance="?attr/textAppearanceBodyMedium"
|
|
|
|
android:textAlignment="center" />
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|