Files
BisaUMKM/app/src/main/res/layout/item_dialog_spinner_card.xml
2025-06-18 16:43:03 +07:00

22 lines
854 B
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
card_view:cardElevation="4dp"
card_view:cardCornerRadius="8dp"
android:foreground="?android:attr/selectableItemBackground">
<TextView
android:id="@+id/tvOption"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:textColor="@color/black_500"
android:text="Item 1"
android:fontFamily="@font/dmsans_semibold"
android:textSize="16sp"
android:gravity="center_vertical" />
</androidx.cardview.widget.CardView>