Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | /* |
| 4 | * |
| 5 | * Copyright 2006,2007,2008 The Android Open Source Project |
| 6 | * |
| 7 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | * you may not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
| 18 | */ |
| 19 | --> |
| 20 | <resources> |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame] | 21 | <style name="BrowserTheme" parent="@android:Theme.Holo"> |
Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 22 | <item name="android:windowBackground">@color/white</item> |
| 23 | <item name="android:colorBackground">#FFFFFFFF</item> |
| 24 | <item name="android:windowActionBar">true</item> |
| 25 | <item name="android:windowNoTitle">false</item> |
Adam Powell | e479792 | 2010-09-09 17:57:36 -0700 | [diff] [blame] | 26 | <item name="android:actionBarStyle">@style/ActionBarStyle</item> |
Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 27 | <item name="android:windowContentOverlay">@null</item> |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame] | 28 | <item name="android:actionModeBackground">@drawable/cab_bg</item> |
Michael Kolb | 513286f | 2010-09-09 12:55:12 -0700 | [diff] [blame] | 29 | <item name="android:actionModeCloseDrawable">@drawable/ic_menu_cab_close</item> |
| 30 | <item name="android:actionButtonStyle">@style/ActionButton</item> |
| 31 | <item name="android:actionDropDownStyle">@style/ActionDropdown</item> |
| 32 | <item name="android:actionOverflowButtonStyle">@style/Overflow</item> |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame] | 33 | </style> |
| 34 | <style name="Dialog.Holo" parent="android:Theme.Holo"> |
| 35 | <item name="android:windowFrame">@null</item> |
| 36 | <item name="android:windowBackground">@drawable/dialog_full</item> |
| 37 | <item name="android:windowIsFloating">true</item> |
| 38 | <item name="android:windowContentOverlay">@null</item> |
| 39 | <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item> |
| 40 | <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item> |
| 41 | <item name="android:colorBackgroundCacheHint">@null</item> |
Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 42 | </style> |
Michael Kolb | 3f65c38 | 2010-08-20 15:31:16 -0700 | [diff] [blame] | 43 | <style name="BookmarkTheme" parent="@android:Theme.Panel"> |
| 44 | <item name="android:windowBackground">@color/black</item> |
Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 45 | </style> |
Michael Kolb | 801ecb7 | 2010-08-25 12:57:38 -0700 | [diff] [blame] | 46 | <style name="ShortCutTheme" parent="@android:Theme.Holo"> |
| 47 | <item name="android:windowContentOverlay">@null</item> |
| 48 | </style> |
Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 49 | <style name="ActionBarStyle"> |
Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 50 | <item name="android:height">48dip</item> |
| 51 | <item name="android:padding">0dip</item> |
| 52 | <item name="android:displayOptions">hideHome</item> |
| 53 | </style> |
Michael Kolb | 513286f | 2010-09-09 12:55:12 -0700 | [diff] [blame] | 54 | <style name="ActionButton"> |
| 55 | <item name="android:height">12dip</item> |
| 56 | <item name="android:background">@drawable/browserbarbutton</item> |
| 57 | </style> |
| 58 | <style name="ActionDropdown"> |
| 59 | <item name="android:background">@drawable/menu_dropdown</item> |
| 60 | </style> |
| 61 | <style name="Overflow"> |
| 62 | <item name="android:src">@drawable/ic_menu_overflow</item> |
| 63 | <item name="android:paddingLeft">16dip</item> |
| 64 | <item name="android:paddingRight">16dip</item> |
| 65 | </style> |
Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 66 | <style name="TitleBar"> |
| 67 | <item name="android:windowEnterAnimation">@anim/title_bar_enter</item> |
| 68 | <item name="android:windowExitAnimation">@anim/title_bar_exit</item> |
| 69 | </style> |
| 70 | </resources> |
| 71 | |