aboutsummaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/grey.xml5
-rw-r--r--res/drawable/greybackground.xml6
2 files changed, 11 insertions, 0 deletions
diff --git a/res/drawable/grey.xml b/res/drawable/grey.xml
new file mode 100644
index 00000000..bdb9383f
--- /dev/null
+++ b/res/drawable/grey.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+ <solid android:color="#ffdddddd" />
+</shape> \ No newline at end of file
diff --git a/res/drawable/greybackground.xml b/res/drawable/greybackground.xml
new file mode 100644
index 00000000..529af5e8
--- /dev/null
+++ b/res/drawable/greybackground.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android" >
+ <item
+ android:state_pressed="true"
+ android:drawable="@drawable/grey" />
+</selector>