summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com>2022-03-01 14:27:21 +0100
committerGitHub <noreply@github.com>2022-03-01 14:27:21 +0100
commit1f1b9fcb22ac8f99392f3c8fb317b8c0e71925ca (patch)
tree1cd950ab0ca12e22d3acd89d73bc433e30c376c3
parentAdd files via upload (diff)
downloadxManager-1f1b9fcb22ac8f99392f3c8fb317b8c0e71925ca.tar
xManager-1f1b9fcb22ac8f99392f3c8fb317b8c0e71925ca.tar.gz
xManager-1f1b9fcb22ac8f99392f3c8fb317b8c0e71925ca.tar.bz2
xManager-1f1b9fcb22ac8f99392f3c8fb317b8c0e71925ca.tar.lz
xManager-1f1b9fcb22ac8f99392f3c8fb317b8c0e71925ca.tar.xz
xManager-1f1b9fcb22ac8f99392f3c8fb317b8c0e71925ca.tar.zst
xManager-1f1b9fcb22ac8f99392f3c8fb317b8c0e71925ca.zip
-rw-r--r--app/src/main/res/drawable/track.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/track.xml b/app/src/main/res/drawable/track.xml
new file mode 100644
index 0000000..0d2b668
--- /dev/null
+++ b/app/src/main/res/drawable/track.xml
@@ -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>