Home | History | Annotate | Download | only in values
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2015 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     <!-- AppCompat theme (day/night vesion) for activities. -->
     20     <style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat.Light" />
     21 
     22     <!-- Variant of AppCompat.DayNight that has a solid (opaque) action bar
     23          with an inverse color profile. The dark action bar sharply stands out against
     24          the light content (when applicable).  -->
     25     <style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar" />
     26 
     27     <!-- Variant of AppCompat.DayNight with no action bar.  -->
     28     <style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar" />
     29 
     30     <!-- AppCompat theme (day/night vesion) for dialog windows and activities,
     31          which is used by the {@code android.support.v7.app.Dialog} class. This changes
     32          the window to be floating (not fill the entire screen), and puts a
     33          frame around its contents. You can set this theme on an activity if
     34          you would like to make an activity that looks like a Dialog. -->
     35     <style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Light.Dialog" />
     36 
     37     <!-- Variant of Theme.AppCompat.DayNight.Dialog that has a nice minimum width for
     38          a regular dialog. -->
     39     <style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Light.Dialog.MinWidth" />
     40 
     41     <!-- Theme for a window that will be displayed either full-screen on
     42          smaller screens (small, normal) or as a dialog on larger screens
     43          (large, xlarge). -->
     44     <style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.Light.DialogWhenLarge" />
     45 
     46     <!-- AppCompat user theme for alert dialog windows, which is used by the
     47          {@code android.support.v7.app.AlertDialog} class. -->
     48     <style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert" />
     49 
     50 </resources>