Archived
27 lines
1019 B
XML
27 lines
1019 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.google.android.material.card.MaterialCardView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:backgroundTint="@color/colorBackgroundLight"
|
|
app:cardCornerRadius="12dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:layout_marginTop="3dp"
|
|
android:layout_marginBottom="3dp"
|
|
app:cardElevation="2dp">
|
|
|
|
<TextView
|
|
android:id="@+id/cardInfoText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/colorText"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginBottom="16dp"/>
|
|
|
|
</com.google.android.material.card.MaterialCardView> |