Newer
Older
QingDaoSmartWell / app / src / main / res / drawable / sheet_item_selector.xml
Pengxh on 18 Apr 2022 512 bytes 1、调整消警接口
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_pressed="false">
        <shape android:shape="rectangle">
            <solid android:color="@color/white" />
            <corners android:radius="@dimen/dp_10" />
        </shape>
    </item>
    <item android:state_pressed="true">
        <shape android:shape="rectangle">
            <solid android:color="@color/itemSelectedColor" />
        </shape>
    </item>
</selector>