Home | History | Annotate | Download | only in values
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3 /*
      4 * Copyright (C) 2008 The Android Open Source Project
      5 *
      6 * Licensed under the Apache License, Version 2.0 (the "License");
      7 * you may not use this file except in compliance with the License.
      8 * You may obtain a copy of the License at
      9 *
     10 *      http://www.apache.org/licenses/LICENSE-2.0
     11 *
     12 * Unless required by applicable law or agreed to in writing, software
     13 * distributed under the License is distributed on an "AS IS" BASIS,
     14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     15 * See the License for the specific language governing permissions and
     16 * limitations under the License.
     17 */
     18 -->
     19 
     20 <resources>
     21 
     22     <style name="LivePickerTheme" parent="@android:style/Theme.DeviceDefault.Settings" />
     23 
     24     <style name="Preview" parent="@style/Theme.AppCompat">
     25 
     26         <!-- Set no title and no action bar because we use a toolbar instead. -->
     27         <item name="android:windowActionBar">false</item>
     28         <item name="android:windowNoTitle">true</item>
     29         <item name="android:windowBackground">@android:color/transparent</item>
     30         <item name="android:windowContentOverlay">@null</item>
     31 
     32         <!-- Set status bar and navigation buttons to be translucent. -->
     33         <item name="android:colorPrimaryDark">@color/translucent_black</item>
     34         <item name="android:navigationBarColor">@color/translucent_black</item>
     35 
     36         <item name="colorAccent">@*android:color/accent_device_default_dark</item>
     37 
     38         <item name="android:windowDisablePreview">true</item>
     39     </style>
     40 
     41     <style name="TranslucentToolbarStyle" parent="@style/Widget.AppCompat.Toolbar">
     42         <item name="android:background">@color/translucent_black</item>
     43         <item name="android:theme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
     44     </style>
     45 
     46     <style name="AttributionPaneTitle" parent="@android:style/TextAppearance.Material.Subhead"/>
     47 
     48 </resources>