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 |
Nicolas Catania | 177d88f | 2009-09-27 15:15:05 -0700 | [diff] [blame] | 7 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Nicolas Catania | 177d88f | 2009-09-27 15:15:05 -0700 | [diff] [blame] | 9 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 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> |
Nicolas Catania | 177d88f | 2009-09-27 15:15:05 -0700 | [diff] [blame] | 18 | <style name="DialtactsTheme" parent="@android:Theme"> |
| 19 | <item name="android:windowNoTitle">true</item> |
| 20 | <item name="android:windowContentOverlay">@null</item> |
| 21 | </style> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 22 | |
| 23 | <style name="MinusButton"> |
| 24 | <item name="android:background">@drawable/btn_circle</item> |
| 25 | <item name="android:src">@drawable/ic_btn_round_minus</item> |
Dominic Mazzoni | 5de8800 | 2010-02-03 09:54:40 -0800 | [diff] [blame] | 26 | <item name="android:contentDescription">@string/description_minus_button</item> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 27 | </style> |
| 28 | |
| 29 | <style name="PlusButton"> |
| 30 | <item name="android:background">@drawable/btn_circle</item> |
| 31 | <item name="android:src">@drawable/ic_btn_round_plus</item> |
Dominic Mazzoni | 5de8800 | 2010-02-03 09:54:40 -0800 | [diff] [blame] | 32 | <item name="android:contentDescription">@string/description_plus_button</item> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 33 | </style> |
| 34 | |
| 35 | <style name="MoreButton"> |
| 36 | <item name="android:background">@drawable/btn_circle</item> |
| 37 | <item name="android:src">@drawable/ic_btn_round_more</item> |
| 38 | </style> |
| 39 | |
Dmitri Plotnikov | dfb1982 | 2010-01-14 15:22:53 -0800 | [diff] [blame] | 40 | <style name="LessButton"> |
| 41 | <item name="android:background">@drawable/btn_circle</item> |
| 42 | <item name="android:src">@drawable/ic_btn_round_less</item> |
| 43 | </style> |
| 44 | |
Romain Guy | 8de29a3 | 2009-03-24 18:08:41 -0700 | [diff] [blame] | 45 | <style name="TallTitleBarTheme" parent="android:Theme.NoTitleBar"> |
| 46 | <item name="android:windowContentOverlay">@null</item> |
| 47 | </style> |
| 48 | |
Daisuke Miyakawa | 72c5052 | 2009-07-07 15:37:59 -0700 | [diff] [blame] | 49 | <style name="BackgroundOnly"> |
| 50 | <item name="android:windowBackground">@null</item> |
| 51 | <item name="android:windowContentOverlay">@null</item> |
| 52 | <item name="android:windowAnimationStyle">@null</item> |
| 53 | <item name="android:windowNoTitle">true</item> |
| 54 | <item name="android:windowNoDisplay">true</item> |
| 55 | <item name="android:windowIsFloating">true</item> |
| 56 | </style> |
| 57 | |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 58 | <style name="FullyTranslucent" parent="android:Theme.Translucent.NoTitleBar"> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 59 | <item name="android:windowContentOverlay">@null</item> |
| 60 | </style> |
| 61 | |
Android Git Automerger | bfef6d7 | 2009-10-01 15:03:36 -0700 | [diff] [blame] | 62 | <style name="FullyTranslucent.QuickContact"> |
Dianne Hackborn | 5112c12 | 2009-09-18 15:52:54 -0700 | [diff] [blame] | 63 | <!-- This is a hack because we want to be able to animate away the |
Android Git Automerger | bfef6d7 | 2009-10-01 15:03:36 -0700 | [diff] [blame] | 64 | QuickContact window, and we close its containing activity at the |
Dianne Hackborn | 5112c12 | 2009-09-18 15:52:54 -0700 | [diff] [blame] | 65 | same time. So put in a dummy animation so this guy sticks around |
| 66 | while the fast track window is animating. --> |
| 67 | <item name="android:windowAnimationStyle">@style/DummyAnimation</item> |
| 68 | </style> |
| 69 | |
Android Git Automerger | bfef6d7 | 2009-10-01 15:03:36 -0700 | [diff] [blame] | 70 | <style name="QuickContact"> |
Jeff Sharkey | 549aa16 | 2009-05-21 01:33:30 -0700 | [diff] [blame] | 71 | <item name="android:windowFrame">@null</item> |
Jeff Sharkey | 80a193a | 2009-05-21 14:18:18 -0700 | [diff] [blame] | 72 | <item name="android:windowBackground">@android:color/transparent</item> |
Jeff Sharkey | 549aa16 | 2009-05-21 01:33:30 -0700 | [diff] [blame] | 73 | <item name="android:windowIsFloating">true</item> |
| 74 | <item name="android:windowContentOverlay">@null</item> |
| 75 | <!-- TODO: create our own animation style in framework --> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 76 | <!-- |
Jeff Sharkey | 549aa16 | 2009-05-21 01:33:30 -0700 | [diff] [blame] | 77 | <item name="android:windowAnimationStyle">@*android:style/Animation.ZoomButtons</item> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 78 | --> |
Jeff Sharkey | 549aa16 | 2009-05-21 01:33:30 -0700 | [diff] [blame] | 79 | </style> |
| 80 | |
Android Git Automerger | bfef6d7 | 2009-10-01 15:03:36 -0700 | [diff] [blame] | 81 | <style name="QuickContactAboveAnimation"> |
| 82 | <item name="android:windowEnterAnimation">@anim/quickcontact_above_enter</item> |
| 83 | <item name="android:windowExitAnimation">@anim/quickcontact_above_exit</item> |
Dianne Hackborn | 5112c12 | 2009-09-18 15:52:54 -0700 | [diff] [blame] | 84 | </style> |
| 85 | |
Android Git Automerger | bfef6d7 | 2009-10-01 15:03:36 -0700 | [diff] [blame] | 86 | <style name="QuickContactBelowAnimation"> |
| 87 | <item name="android:windowEnterAnimation">@anim/quickcontact_below_enter</item> |
| 88 | <item name="android:windowExitAnimation">@anim/quickcontact_below_exit</item> |
Dianne Hackborn | 5112c12 | 2009-09-18 15:52:54 -0700 | [diff] [blame] | 89 | </style> |
| 90 | |
| 91 | <style name="DummyAnimation"> |
| 92 | <item name="android:windowExitAnimation">@anim/dummy_animation</item> |
| 93 | </style> |
| 94 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 95 | </resources> |