blob: 28d2f2857c39c93c1d3ecdceb55a22a911f70297 [file] [log] [blame]
Michael Kolbed217742010-08-10 17:52:34 -07001<?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 Kolbc7485ae2010-09-03 10:10:58 -070021 <style name="BrowserTheme" parent="@android:Theme.Holo">
Michael Kolbed217742010-08-10 17:52:34 -070022 <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>
26 <item name="android:windowActionBarStyle">@style/ActionBarStyle</item>
27 <item name="android:windowContentOverlay">@null</item>
Michael Kolbc7485ae2010-09-03 10:10:58 -070028 <item name="android:actionModeBackground">@drawable/cab_bg</item>
29 </style>
30 <style name="Dialog.Holo" parent="android:Theme.Holo">
31 <item name="android:windowFrame">@null</item>
32 <item name="android:windowBackground">@drawable/dialog_full</item>
33 <item name="android:windowIsFloating">true</item>
34 <item name="android:windowContentOverlay">@null</item>
35 <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
36 <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
37 <item name="android:colorBackgroundCacheHint">@null</item>
Michael Kolbed217742010-08-10 17:52:34 -070038 </style>
Michael Kolb3f65c382010-08-20 15:31:16 -070039 <style name="BookmarkTheme" parent="@android:Theme.Panel">
40 <item name="android:windowBackground">@color/black</item>
Michael Kolbed217742010-08-10 17:52:34 -070041 </style>
Michael Kolb801ecb72010-08-25 12:57:38 -070042 <style name="ShortCutTheme" parent="@android:Theme.Holo">
43 <item name="android:windowContentOverlay">@null</item>
44 </style>
Michael Kolbed217742010-08-10 17:52:34 -070045 <style name="ActionBarStyle">
Michael Kolbed217742010-08-10 17:52:34 -070046 <item name="android:height">48dip</item>
47 <item name="android:padding">0dip</item>
48 <item name="android:displayOptions">hideHome</item>
49 </style>
50 <style name="TitleBar">
51 <item name="android:windowEnterAnimation">@anim/title_bar_enter</item>
52 <item name="android:windowExitAnimation">@anim/title_bar_exit</item>
53 </style>
54</resources>
55