Newer
Older
SanxiTownSmartWell / app / src / main / res / layout / popup_option.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:backgroundTint="@color/popupColor"
    app:cardCornerRadius="@dimen/dp_5">

    <ListView
        android:id="@+id/popupListView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:divider="@drawable/popup_list_divider"
        android:dividerHeight="1px"
        android:scrollbars="none" />
</androidx.cardview.widget.CardView>