The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2009 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <resources> |
| 18 | |
| 19 | <style name="MinusButton"> |
| 20 | <item name="android:background">@drawable/btn_circle</item> |
| 21 | <item name="android:src">@drawable/ic_btn_round_minus</item> |
| 22 | </style> |
| 23 | |
| 24 | <style name="PlusButton"> |
| 25 | <item name="android:background">@drawable/btn_circle</item> |
| 26 | <item name="android:src">@drawable/ic_btn_round_plus</item> |
| 27 | </style> |
| 28 | |
| 29 | <style name="MoreButton"> |
| 30 | <item name="android:background">@drawable/btn_circle</item> |
| 31 | <item name="android:src">@drawable/ic_btn_round_more</item> |
| 32 | </style> |
| 33 | |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 34 | <style name="TallTitleBarTheme" parent="android:Theme.NoTitleBar"> |
| 35 | <item name="android:windowContentOverlay">@null</item> |
| 36 | </style> |
| 37 | |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame^] | 38 | <style name="ShowOrCreateTheme" parent="android:Theme.Translucent.NoTitleBar"> |
| 39 | <item name="android:windowContentOverlay">@null</item> |
| 40 | </style> |
| 41 | |
Jeff Sharkey | 549aa16 | 2009-05-21 01:33:30 -0700 | [diff] [blame] | 42 | <style name="FastTrack"> |
| 43 | <item name="android:windowFrame">@null</item> |
Jeff Sharkey | 80a193a | 2009-05-21 14:18:18 -0700 | [diff] [blame] | 44 | <item name="android:windowBackground">@android:color/transparent</item> |
Jeff Sharkey | 549aa16 | 2009-05-21 01:33:30 -0700 | [diff] [blame] | 45 | <item name="android:windowIsFloating">true</item> |
| 46 | <item name="android:windowContentOverlay">@null</item> |
| 47 | <!-- TODO: create our own animation style in framework --> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame^] | 48 | <!-- |
Jeff Sharkey | 549aa16 | 2009-05-21 01:33:30 -0700 | [diff] [blame] | 49 | <item name="android:windowAnimationStyle">@*android:style/Animation.ZoomButtons</item> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame^] | 50 | --> |
Jeff Sharkey | 549aa16 | 2009-05-21 01:33:30 -0700 | [diff] [blame] | 51 | </style> |
| 52 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 53 | </resources> |