blob: 05c091651ec55360adc0b15fb845090abf502461 [file] [log] [blame]
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08001<?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 Catania177d88f2009-09-27 15:15:05 -07007
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08008 http://www.apache.org/licenses/LICENSE-2.0
Nicolas Catania177d88f2009-09-27 15:15:05 -07009
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080010 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 Catania177d88f2009-09-27 15:15:05 -070018 <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 Project7aa0e4c2009-03-03 19:32:21 -080022
23 <style name="MinusButton">
24 <item name="android:background">@drawable/btn_circle</item>
25 <item name="android:src">@drawable/ic_btn_round_minus</item>
26 </style>
27
28 <style name="PlusButton">
29 <item name="android:background">@drawable/btn_circle</item>
30 <item name="android:src">@drawable/ic_btn_round_plus</item>
31 </style>
32
33 <style name="MoreButton">
34 <item name="android:background">@drawable/btn_circle</item>
35 <item name="android:src">@drawable/ic_btn_round_more</item>
36 </style>
37
Romain Guy8de29a32009-03-24 18:08:41 -070038 <style name="TallTitleBarTheme" parent="android:Theme.NoTitleBar">
39 <item name="android:windowContentOverlay">@null</item>
40 </style>
41
Daisuke Miyakawa72c50522009-07-07 15:37:59 -070042 <style name="BackgroundOnly">
43 <item name="android:windowBackground">@null</item>
44 <item name="android:windowContentOverlay">@null</item>
45 <item name="android:windowAnimationStyle">@null</item>
46 <item name="android:windowNoTitle">true</item>
47 <item name="android:windowNoDisplay">true</item>
48 <item name="android:windowIsFloating">true</item>
49 </style>
50
Jeff Sharkeye8971622009-09-17 15:42:36 -070051 <style name="FullyTranslucent" parent="android:Theme.Translucent.NoTitleBar">
Jeff Sharkey802b2052009-08-04 14:21:06 -070052 <item name="android:windowContentOverlay">@null</item>
53 </style>
54
Dianne Hackborn5112c122009-09-18 15:52:54 -070055 <style name="FullyTranslucent.FastTrack">
56 <!-- This is a hack because we want to be able to animate away the
57 FastTrack window, and we close its containing activity at the
58 same time. So put in a dummy animation so this guy sticks around
59 while the fast track window is animating. -->
60 <item name="android:windowAnimationStyle">@style/DummyAnimation</item>
61 </style>
62
Jeff Sharkey549aa162009-05-21 01:33:30 -070063 <style name="FastTrack">
64 <item name="android:windowFrame">@null</item>
Jeff Sharkey80a193a2009-05-21 14:18:18 -070065 <item name="android:windowBackground">@android:color/transparent</item>
Jeff Sharkey549aa162009-05-21 01:33:30 -070066 <item name="android:windowIsFloating">true</item>
67 <item name="android:windowContentOverlay">@null</item>
68 <!-- TODO: create our own animation style in framework -->
Jeff Sharkey802b2052009-08-04 14:21:06 -070069 <!--
Jeff Sharkey549aa162009-05-21 01:33:30 -070070 <item name="android:windowAnimationStyle">@*android:style/Animation.ZoomButtons</item>
Jeff Sharkey802b2052009-08-04 14:21:06 -070071 -->
Jeff Sharkey549aa162009-05-21 01:33:30 -070072 </style>
73
Dianne Hackborn5112c122009-09-18 15:52:54 -070074 <style name="FastTrackAboveAnimation">
75 <item name="android:windowEnterAnimation">@anim/fasttrack_above_enter</item>
76 <item name="android:windowExitAnimation">@anim/fasttrack_above_exit</item>
77 </style>
78
79 <style name="FastTrackBelowAnimation">
80 <item name="android:windowEnterAnimation">@anim/fasttrack_below_enter</item>
81 <item name="android:windowExitAnimation">@anim/fasttrack_below_exit</item>
82 </style>
83
84 <style name="DummyAnimation">
85 <item name="android:windowExitAnimation">@anim/dummy_animation</item>
86 </style>
87
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080088</resources>