Home | History | Annotate | Download | only in values-v11
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <resources>
      3 
      4     <!--
      5         Base application theme for API 11+. This theme completely replaces
      6         AppBaseTheme from res/values/styles.xml on API 11+ devices.
      7     -->
      8     <style name="AppBaseTheme" parent="android:Theme.Holo.Light">
      9         <!-- API 11 theme customizations can go here. -->
     10     </style>
     11 
     12     <style name="FullscreenTheme" parent="android:Theme.Holo">
     13         <item name="android:actionBarStyle">@style/FullscreenActionBarStyle</item>
     14         <item name="android:windowActionBarOverlay">true</item>
     15         <item name="android:windowBackground">@null</item>
     16         <item name="buttonBarStyle">?android:attr/buttonBarStyle</item>
     17         <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item>
     18     </style>
     19 
     20     <style name="FullscreenActionBarStyle" parent="android:Widget.Holo.ActionBar">
     21         <item name="android:background">@color/black_overlay</item>
     22     </style>
     23 
     24 </resources>
     25