diff options
author | Torne (Richard Coles) <torne@wolfpuppy.org.uk> | 2012-11-11 14:32:20 +0000 |
---|---|---|
committer | Torne (Richard Coles) <torne@wolfpuppy.org.uk> | 2012-11-11 14:32:20 +0000 |
commit | 4f012aa954c7e092c2ccb4f07d8c9a1434e9a905 (patch) | |
tree | 7d50db2a5522d7853dbc84e4d26ce9b1f444eda9 | |
parent | 5fd5209c87400598d185beaa836994451c3460d9 (diff) | |
download | connectbot-4f012aa954c7e092c2ccb4f07d8c9a1434e9a905.tar.gz connectbot-4f012aa954c7e092c2ccb4f07d8c9a1434e9a905.tar.bz2 connectbot-4f012aa954c7e092c2ccb4f07d8c9a1434e9a905.zip |
Make v14 styles match v11.
The revert of the previous change to disable targeting v14 left the styles
inconsistent making the action bar not an overlay. Fix by copying the style
changes over.
-rw-r--r-- | res/values-v14/styles.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/res/values-v14/styles.xml b/res/values-v14/styles.xml index 2535451..90131d1 100644 --- a/res/values-v14/styles.xml +++ b/res/values-v14/styles.xml @@ -20,5 +20,11 @@ <resources> <style name="NoTitle" parent="android:Theme.DeviceDefault"> <item name="android:windowContentOverlay">@null</item> + <item name="android:windowActionBarOverlay">true</item> + <item name="android:actionBarStyle">@style/SolidActionBar</item> + </style> + + <style name="SolidActionBar" parent="android:Widget.Holo.ActionBar"> + <item name="android:background">#222222</item> </style> </resources> |