diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-07-05 16:43:57 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-07-05 16:43:57 +0200 |
commit | 3768761e9031e1ccc1136d44fc1f8f0fe6dadb26 (patch) | |
tree | 3e693b74f0e74426765e9567a04470d1e326ea6a /res | |
parent | 3c4df7a89dbe1e82d99ccb42d7c4215b7fa112b4 (diff) | |
download | AntennaPod-3768761e9031e1ccc1136d44fc1f8f0fe6dadb26.zip |
Listitems are now highlighted when in actionmode
Diffstat (limited to 'res')
-rw-r--r-- | res/drawable-v11/borderless_button.xml | 7 | ||||
-rw-r--r-- | res/values-v11/colors.xml | 5 | ||||
-rw-r--r-- | res/values/colors.xml | 1 |
3 files changed, 10 insertions, 3 deletions
diff --git a/res/drawable-v11/borderless_button.xml b/res/drawable-v11/borderless_button.xml index cfc630005..28945a631 100644 --- a/res/drawable-v11/borderless_button.xml +++ b/res/drawable-v11/borderless_button.xml @@ -1,10 +1,11 @@ <?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" /> + <solid android:color="@color/selection_background" /> </shape></item> - <item android:state_focused="true"><shape android:shape="rectangle"> - <solid android:color="#33B5E5" /> + <item android:state_focused="true"><shape android:shape="rectangle"> + <solid android:color="@color/selection_background" /> </shape></item> <item><shape android:shape="rectangle"> <solid android:color="@android:color/transparent" /> diff --git a/res/values-v11/colors.xml b/res/values-v11/colors.xml new file mode 100644 index 000000000..86b0fae09 --- /dev/null +++ b/res/values-v11/colors.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="selection_background">#33B5E5</color> + +</resources>
\ No newline at end of file diff --git a/res/values/colors.xml b/res/values/colors.xml index 1de0f1d98..8a8dc03e7 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -18,5 +18,6 @@ <color name="navy">#000080</color> <color name="black">#000000</color> <color name="bright_blue">#33B5E5</color> + <color name="selection_background">#FEBB20</color> </resources>
\ No newline at end of file |