Archived
37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:layout_width="match_parent" android:layout_height="wrap_content"
|
||
|
|
android:paddingLeft="0dp"
|
||
|
|
android:paddingRight="0dp">
|
||
|
|
|
||
|
|
<com.google.android.material.card.MaterialCardView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:backgroundTint="?attr/colorBackgroundCard"
|
||
|
|
app:strokeColor="?attr/colorAccent"
|
||
|
|
app:strokeWidth="0dp"
|
||
|
|
app:cardCornerRadius="0dp"
|
||
|
|
app:cardUseCompatPadding="true"
|
||
|
|
android:clickable="true">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/cardInfoText"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textColor="?attr/colorText"
|
||
|
|
android:layout_marginStart="16dp"
|
||
|
|
android:layout_marginEnd="16dp"
|
||
|
|
android:layout_marginTop="16dp"
|
||
|
|
android:layout_marginBottom="16dp"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</com.google.android.material.card.MaterialCardView>
|
||
|
|
|
||
|
|
</LinearLayout>
|