diff options
| author | rsudev <rasch@munin-soft.de> | 2014-05-30 21:58:34 +0200 |
|---|---|---|
| committer | rsudev <rasch@munin-soft.de> | 2014-05-30 21:58:34 +0200 |
| commit | 72de884a71bed85880f074bc212d56be3a9b5134 (patch) | |
| tree | ad4938d94b123a9dbd45007c87633c6f2ba7392d | |
| parent | d30e8a068d5999dda8c2bf42eea25a4592b2ffa2 (diff) | |
| download | cgeo-72de884a71bed85880f074bc212d56be3a9b5134.zip cgeo-72de884a71bed85880f074bc212d56be3a9b5134.tar.gz cgeo-72de884a71bed85880f074bc212d56be3a9b5134.tar.bz2 | |
Fixes #3893, Less transparent Action Bar
'Make main background less transparent. Should make actionbar icons more visible on light backgrounds'
- Adjusted implementation by schwabe according to suggestion from bananeweizen. (rsudev)
| -rw-r--r-- | main/res/values/colors.xml | 1 | ||||
| -rw-r--r-- | main/res/values/themes.xml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/main/res/values/colors.xml b/main/res/values/colors.xml index 0e85c36..30d00df 100644 --- a/main/res/values/colors.xml +++ b/main/res/values/colors.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <resources> + <color name="background_main_transparent">#D0000000</color> <color name="just_white">#FFFFFFFF</color> <color name="just_black">#FF000000</color> <color name="background_dark">#FF000000</color> diff --git a/main/res/values/themes.xml b/main/res/values/themes.xml index 7928e80..82a4422 100644 --- a/main/res/values/themes.xml +++ b/main/res/values/themes.xml @@ -5,7 +5,7 @@ <style name="cgeo_main" parent="@style/Theme.AppCompat"> <!-- copy the style elements of the Wallpaper theme since AppCombat has no Wallpaper theme --> - <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:windowBackground">@color/background_main_transparent</item> <item name="android:colorBackgroundCacheHint">@null</item> <item name="android:windowShowWallpaper">true</item> |
