The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 3 | /* |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4 | * |
| 5 | * Copyright 2006,2007,2008 The Android Open Source Project |
| 6 | * |
Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 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 |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 10 | * |
Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 12 | * |
Michael Kolb | ed21774 | 2010-08-10 17:52:34 -0700 | [diff] [blame] | 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 |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 17 | * limitations under the License. |
| 18 | */ |
| 19 | --> |
| 20 | <resources> |
John Reck | 285ef04 | 2011-02-11 15:44:17 -0800 | [diff] [blame] | 21 | <style name="BrowserTheme" parent="@android:Theme.Holo"> |
| 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> |
John Reck | 30b065e | 2011-07-19 10:58:05 -0700 | [diff] [blame] | 26 | <item name="android:windowActionBarOverlay">false</item> |
John Reck | 285ef04 | 2011-02-11 15:44:17 -0800 | [diff] [blame] | 27 | <item name="android:actionBarStyle">@style/ActionBarStyle</item> |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 28 | </style> |
John Reck | 9d27ff5 | 2011-02-11 17:47:54 -0800 | [diff] [blame] | 29 | <style name="DialogWhenLarge" parent="@android:style/Theme.Holo.DialogWhenLarge" > |
John Reck | 285ef04 | 2011-02-11 15:44:17 -0800 | [diff] [blame] | 30 | <item name="android:windowActionBar">false</item> |
| 31 | </style> |
| 32 | <style name="BookmarkTheme" parent="@android:Theme.Holo"> |
| 33 | <item name="android:windowActionBar">false</item> |
| 34 | <item name="android:windowNoTitle">true</item> |
| 35 | <item name="android:colorBackgroundCacheHint">@null</item> |
| 36 | <item name="android:windowFrame">@null</item> |
| 37 | <item name="android:windowContentOverlay">@null</item> |
| 38 | <item name="android:windowIsFloating">true</item> |
| 39 | <item name="android:backgroundDimEnabled">false</item> |
| 40 | <item name="android:windowIsTranslucent">true</item> |
| 41 | </style> |
John Reck | 30b065e | 2011-07-19 10:58:05 -0700 | [diff] [blame] | 42 | <style name="ActionBarStyle" parent="@android:style/Widget.Holo.ActionBar"> |
Michael Kolb | ef8b0b9 | 2011-09-02 14:02:24 -0700 | [diff] [blame^] | 43 | <item name="android:background">@drawable/bg_urlbar</item> |
John Reck | 285ef04 | 2011-02-11 15:44:17 -0800 | [diff] [blame] | 44 | <item name="android:displayOptions"></item> |
| 45 | </style> |
John Reck | 9f45a35 | 2011-06-22 11:38:28 -0700 | [diff] [blame] | 46 | <style name="Suggestions" parent="@android:style/Widget.Holo.AutoCompleteTextView"> |
| 47 | <item name="android:popupBackground">#D0000000</item> |
| 48 | <item name="android:dropDownVerticalOffset">0dip</item> |
John Reck | 285ef04 | 2011-02-11 15:44:17 -0800 | [diff] [blame] | 49 | </style> |
| 50 | <style name="SuggestionLineMedium" |
John Reck | 9f45a35 | 2011-06-22 11:38:28 -0700 | [diff] [blame] | 51 | parent="@android:style/TextAppearance.Holo.Medium"> |
John Reck | 285ef04 | 2011-02-11 15:44:17 -0800 | [diff] [blame] | 52 | <item name="android:textSize">16sp</item> |
| 53 | </style> |
| 54 | <style name="SuggestionLineSmall" |
John Reck | 9f45a35 | 2011-06-22 11:38:28 -0700 | [diff] [blame] | 55 | parent="@android:style/TextAppearance.Holo.Small"> |
John Reck | 285ef04 | 2011-02-11 15:44:17 -0800 | [diff] [blame] | 56 | <item name="android:textSize">12sp</item> |
Michael Kolb | d3e4d4f | 2010-10-15 10:58:44 -0700 | [diff] [blame] | 57 | </style> |
Adam Powell | e479792 | 2010-09-09 17:57:36 -0700 | [diff] [blame] | 58 | <style name="ActionBar" parent="@android:style/Widget.ActionBar"> |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame] | 59 | <item name="android:background">@color/black</item> |
| 60 | </style> |
John Reck | 608baa7 | 2010-11-24 10:32:28 -0800 | [diff] [blame] | 61 | <style name="ShortcutTheme" parent="@android:Theme.Holo.DialogWhenLarge"> |
Michael Kolb | 801ecb7 | 2010-08-25 12:57:38 -0700 | [diff] [blame] | 62 | </style> |
Leon Scroggins | 83932c7 | 2009-09-30 11:55:54 -0400 | [diff] [blame] | 63 | <style name="TitleBar"> |
| 64 | <item name="android:windowEnterAnimation">@anim/title_bar_enter</item> |
| 65 | <item name="android:windowExitAnimation">@anim/title_bar_exit</item> |
| 66 | </style> |
John Reck | 40badf2 | 2011-04-20 15:31:13 -0700 | [diff] [blame] | 67 | <style name="HoloIcon"> |
Michael Kolb | 31d469b | 2010-12-09 20:49:54 -0800 | [diff] [blame] | 68 | <item name="android:layout_marginLeft">16dip</item> |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame] | 69 | </style> |
John Reck | 3f24ba2 | 2011-01-20 12:55:17 -0800 | [diff] [blame] | 70 | <style name="HoloButton"> |
Michael Kolb | 5a72f18 | 2011-01-13 20:35:06 -0800 | [diff] [blame] | 71 | <item name="android:background">?android:attr/selectableItemBackground</item> |
John Reck | 3f24ba2 | 2011-01-20 12:55:17 -0800 | [diff] [blame] | 72 | <item name="android:paddingLeft">8dip</item> |
| 73 | <item name="android:paddingRight">8dip</item> |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame] | 74 | </style> |
| 75 | <style name="TabTitleSelected" parent="@android:style/TextAppearance.Small"> |
Michael Kolb | d3e4d4f | 2010-10-15 10:58:44 -0700 | [diff] [blame] | 76 | <item name="android:textColor">?android:attr/textColorPrimary</item> |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame] | 77 | <item name="android:textStyle">bold</item> |
| 78 | </style> |
| 79 | <style name="TabTitleUnselected" parent="@android:style/TextAppearance.Small"> |
Michael Kolb | d3e4d4f | 2010-10-15 10:58:44 -0700 | [diff] [blame] | 80 | <item name="android:textColor">?android:attr/textColorSecondary</item> |
Michael Kolb | c7485ae | 2010-09-03 10:10:58 -0700 | [diff] [blame] | 81 | <item name="android:textStyle">normal</item> |
| 82 | </style> |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 83 | </resources> |