Create track.xml

This commit is contained in:
xC3FFF0E 2022-03-01 21:27:21 +08:00 committed by GitHub
parent d435cd57e8
commit 1f1b9fcb22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true">
<shape android:shape="rectangle">
<corners android:radius="100dp"/>
<solid android:color="#FF1DA954"/>
<stroke android:color="#BDBDBD" android:width="1.3dp"/>
<size android:height="20dp"/>
</shape>
</item>
<item android:state_checked="false">
<shape android:shape="rectangle">
<corners android:radius="100dp"/>
<solid android:color="#656565"/>
<stroke android:color="#BDBDBD" android:width="1.3dp"/>
<size android:height="20dp"/>
</shape>
</item>
</selector>