check_circle_12.xml 557 Bytes
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:width="12dp" android:height="12dp">
        <selector>
            <item android:state_checked="true"
                android:drawable="@drawable/png_ic_check_circle"/>
            <item>
                <shape>
                    <corners android:radius="20dp"/>
                    <stroke android:width="1.5dp" android:color="#333"/>
                </shape>
            </item>
        </selector>
    </item>
</layer-list>