summaryrefslogtreecommitdiff
path: root/res/drawable
diff options
context:
space:
mode:
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/borderless_button.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/res/drawable/borderless_button.xml b/res/drawable/borderless_button.xml
new file mode 100644
index 000000000..cfc630005
--- /dev/null
+++ b/res/drawable/borderless_button.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_pressed="true"><shape android:shape="rectangle">
+ <solid android:color="#33B5E5" />
+ </shape></item>
+ <item android:state_focused="true"><shape android:shape="rectangle">
+ <solid android:color="#33B5E5" />
+ </shape></item>
+ <item><shape android:shape="rectangle">
+ <solid android:color="@android:color/transparent" />
+ </shape></item>
+
+</selector> \ No newline at end of file