aboutsummaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
authorDaniel Gultsch <daniel@gultsch.de>2014-03-13 21:37:27 +0100
committerDaniel Gultsch <daniel@gultsch.de>2014-03-13 21:37:27 +0100
commit9c811f8fb20b056ea12803e93e5ea20dc052bdcd (patch)
tree7c4be8327ca3722f41d7784c126081a92585c26c /res/drawable
parent507cfba6ad481b078528ead056088e6aa6c4a3fc (diff)
sharing text
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>