diff options
author | John Reck <jreck@google.com> | 2011-02-11 15:44:17 -0800 |
---|---|---|
committer | John Reck <jreck@google.com> | 2011-02-14 10:37:05 -0800 |
commit | 285ef044bb1098b3bf318a65fe6a86c93b2365b0 (patch) | |
tree | caa86eeebc1a0605e0e754fd1abeaaefad847643 /res/values/styles.xml | |
parent | b3b653b821c2e7ef948925992b6bb6a83c2f923b (diff) | |
download | packages_apps_Browser-285ef044bb1098b3bf318a65fe6a86c93b2365b0.zip packages_apps_Browser-285ef044bb1098b3bf318a65fe6a86c93b2365b0.tar.gz packages_apps_Browser-285ef044bb1098b3bf318a65fe6a86c93b2365b0.tar.bz2 |
Fix crash when opening bookmarks on phone
Change-Id: I862c52000e2f3f414e1064a66c922dc9e924bc88
Diffstat (limited to 'res/values/styles.xml')
-rw-r--r-- | res/values/styles.xml | 48 |
1 files changed, 35 insertions, 13 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml index a4a27cc..06c7b32 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -18,20 +18,48 @@ */ --> <resources> - <style name="BrowserTheme" parent="@android:Theme.Black"> + <style name="BrowserTheme" parent="@android:Theme.Holo"> + <item name="android:windowBackground">@color/white</item> + <item name="android:colorBackground">#FFFFFFFF</item> + <item name="android:windowActionBar">true</item> + <item name="android:windowNoTitle">false</item> + <item name="android:actionBarStyle">@style/ActionBarStyle</item> + <item name="android:actionButtonStyle">@style/ActionButton</item> + </style> + <style name="Dialog" parent="@android:style/Theme.Holo.Dialog" > + <item name="android:windowActionBar">false</item> + </style> + <style name="BookmarkTheme" parent="@android:Theme.Holo"> + <item name="android:windowActionBar">false</item> <item name="android:windowNoTitle">true</item> + <item name="android:colorBackgroundCacheHint">@null</item> + <item name="android:windowFrame">@null</item> <item name="android:windowContentOverlay">@null</item> + <item name="android:windowIsFloating">true</item> + <item name="android:backgroundDimEnabled">false</item> + <item name="android:windowIsTranslucent">true</item> </style> - <style name="Dialog" parent="@android:style/Theme.Dialog"> - <item name="android:background">@color/black</item> + <style name="ActionBarStyle"> + <item name="android:height">56dip</item> + <item name="android:background">@drawable/bg_browsertabs</item> + <item name="android:displayOptions"></item> + </style> + <style name="ActionButton"> + <item name="android:background">?android:attr/selectableItemBackground</item> + </style> + <style name="Suggestions" parent="@android:style/Widget.Holo.Light.AutoCompleteTextView"> + </style> + <style name="SuggestionLineMedium" + parent="@android:style/TextAppearance.Holo.Medium.Inverse"> + <item name="android:textSize">16sp</item> + </style> + <style name="SuggestionLineSmall" + parent="@android:style/TextAppearance.Holo.Small.Inverse"> + <item name="android:textSize">12sp</item> </style> <style name="ActionBar" parent="@android:style/Widget.ActionBar"> <item name="android:background">@color/black</item> </style> - <style name="BookmarkTheme" parent="@android:Theme.Black"> - <item name="android:windowNoTitle">true</item> - <item name="android:windowContentOverlay">@null</item> - </style> <style name="ShortcutTheme" parent="@android:Theme.Holo.DialogWhenLarge"> <item name="android:windowNoTitle">true</item> <item name="android:windowContentOverlay">@null</item> @@ -56,10 +84,4 @@ <item name="android:textColor">?android:attr/textColorSecondary</item> <item name="android:textStyle">normal</item> </style> - <style name="Suggestions" parent="@android:style/Widget.AutoCompleteTextView"> - </style> - <style name="SuggestionLineMedium" parent="@android:style/TextAppearance.Medium"> - </style> - <style name="SuggestionLineSmall" parent="@android:style/TextAppearance.Small"> - </style> </resources> |