2019-04-29 19:27:51 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-05-26 18:40:02 +02:00
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
2019-05-04 16:20:14 +02:00
|
|
|
android:layout_height="wrap_content"
|
2019-04-29 19:27:51 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-07-31 19:48:21 +02:00
|
|
|
android:backgroundTint="@color/colorBackgroundLight"
|
2019-07-30 22:48:13 +02:00
|
|
|
app:cardCornerRadius="12dp"
|
2019-05-04 16:20:14 +02:00
|
|
|
android:clickable="true"
|
|
|
|
|
android:focusable="true"
|
2019-05-08 08:08:04 +02:00
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
|
android:layout_marginBottom="3dp"
|
2019-07-30 22:48:13 +02:00
|
|
|
app:cardElevation="2dp">
|
2019-04-29 19:27:51 +02:00
|
|
|
|
2019-09-23 17:23:59 +02:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/cardInfoText"
|
2019-04-29 19:27:51 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-09-23 17:23:59 +02:00
|
|
|
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"/>
|
2019-04-29 19:27:51 +02:00
|
|
|
|
2019-05-04 16:20:14 +02:00
|
|
|
</com.google.android.material.card.MaterialCardView>
|