summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/drawable/track.xml
blob: 0d2b66832bc52428db37c6b285bc47b29824c4f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>