Files
pmu_android/app/src/main/res/layout/item_bet.xml
2025-10-28 17:31:54 +01:00

35 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="15dp"
android:background="@color/green_opacity_30"
android:layout_margin="5dp"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="18dp"
android:background="@drawable/course_item_border">
<TextView
android:id="@+id/tvName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18sp"
android:textColor="@color/text_color"
android:fontFamily="sans-serif-medium">
</TextView>
<TextView
android:id="@+id/tvDate"
android:layout_width="wrap_content"
android:layout_marginTop="5dp"
android:textFontWeight="400"
android:layout_height="wrap_content"
android:textSize="14sp"
android:textColor="@color/text_color"
android:fontFamily="sans-serif-medium">
</TextView>
</LinearLayout>
</androidx.cardview.widget.CardView>