blob: c3c23a0a3a5daf1c81376edea4020817e319938f [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
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 Guy4eb77b62009-03-24 18:10:17 -070034 <style name="TallTitleBarTheme" parent="android:Theme.NoTitleBar">
35 <item name="android:windowContentOverlay">@null</item>
36 </style>
37
Jeff Sharkey549aa162009-05-21 01:33:30 -070038 <style name="FastTrack">
39 <item name="android:windowFrame">@null</item>
Jeff Sharkey80a193a2009-05-21 14:18:18 -070040 <item name="android:windowBackground">@android:color/transparent</item>
Jeff Sharkey549aa162009-05-21 01:33:30 -070041 <item name="android:windowIsFloating">true</item>
42 <item name="android:windowContentOverlay">@null</item>
43 <!-- TODO: create our own animation style in framework -->
44 <item name="android:windowAnimationStyle">@*android:style/Animation.ZoomButtons</item>
45 </style>
46
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080047</resources>