1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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    <!-- This is a theme that will adjust itself depending on the API version.
19         The default definition is the safe one, using a theme that has always
20         been defined.  Look at values-11/styles.xml for a variation that is
21         selected when the holographic theme is available. -->
22    <style name="ThemeHolo" parent="android:Theme">
23    </style>
24
25    <!-- This is a theme that will adjust itself depending on the API version.
26         The default definition is the safe one, using a theme that has always
27         been defined.  Look at values-11/styles.xml for a variation that is
28         selected when the holographic theme is available. -->
29    <style name="ThemeHoloLight" parent="android:Theme.Light">
30    </style>
31
32    <!-- Older platforms don't have Theme.Holo.DialogWhenLarge; we will define
33         our own wrapper theme that uses it only when running on the appropriate
34         platform version.  On older platforms, we always use the generic
35         fullscreen theme, because they don't support some feature that help
36         in correctly laying out an activity as a dialog. -->
37    <style name="ThemeDialogWhenLarge" parent="android:style/Theme">
38    </style>
39</resources>
40