mirror of
https://github.com/shaulascr/ecommerce_serang.git
synced 2025-08-10 09:22:21 +00:00
22 lines
854 B
XML
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>
|