1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2013 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 <!-- Themes in the "Theme.Base" family vary based on the current platform 20 version to provide the correct basis on each device. You probably don't 21 want to use them directly in your apps. 22 23 Themes in the "Theme.AppCompat" family are meant to be extended or used 24 directly by apps. 25 26 This is the values-v11/ file that only declares the Base themes for 27 Honeycomb+. You probably want to edit values/themes.xml instead. --> 28 <eat-comment/> 29 30 <!-- Base platform-dependent theme --> 31 <style name="Theme.Base" parent="android:Theme.Holo"> 32 <item name="android:windowNoTitle">true</item> 33 <item name="android:windowActionBar">false</item> 34 </style> 35 36 <!-- Base platform-dependent theme providing a light-themed activity. --> 37 <style name="Theme.Base.Light" parent="android:Theme.Holo.Light"> 38 <item name="android:windowNoTitle">true</item> 39 <item name="android:windowActionBar">false</item> 40 </style> 41 42 </resources> 43