aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/drawable/radio_frame.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/res/drawable/radio_frame.xml')
-rw-r--r--app/res/drawable/radio_frame.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/app/res/drawable/radio_frame.xml b/app/res/drawable/radio_frame.xml
new file mode 100644
index 0000000..de69091
--- /dev/null
+++ b/app/res/drawable/radio_frame.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
+ <item
+ android:height="25dp"
+ android:width="25dp">
+ <shape android:shape="oval" >
+ <gradient
+ android:angle="45"
+ android:endColor="#101010"
+ android:startColor="#585858"
+ android:type="linear" >
+ </gradient>
+ </shape>
+ </item>
+
+ <item
+ android:height="20dp"
+ android:left="2.5dp"
+ android:top="2.5dp"
+ android:width="20dp">
+ <shape android:shape="oval" >
+ <solid android:color="@android:color/black" />
+
+ <stroke
+ android:width="1dp"
+ android:color="@color/ThemeDark" />
+ </shape>
+ </item>
+
+</layer-list> \ No newline at end of file