blob: f6c462836d7e51f9f05f244410511342296067cb [file] [log] [blame]
Jeff Sharkey5e1884d2013-09-10 17:56:39 -07001<?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
Jeff Sharkey7d58fc62013-09-12 16:25:02 -070017<resources xmlns:android="http://schemas.android.com/apk/res/android">
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070018
Ben Kwa3512cb22015-08-24 10:15:56 -070019 <style name="DocumentsBaseTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar" />
Jeff Sharkey67bf49d2014-08-05 10:14:45 -070020
Ben Kwa3512cb22015-08-24 10:15:56 -070021 <style name="DocumentsTheme" parent="@style/DocumentsBaseTheme">
22 <item name="actionBarWidgetTheme">@null</item>
23 <item name="actionBarTheme">@*android:style/ThemeOverlay.Material.Dark.ActionBar</item>
24 <item name="actionBarPopupTheme">@*android:style/ThemeOverlay.Material.Light</item>
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070025
26 <item name="android:colorPrimaryDark">@*android:color/material_blue_grey_900</item>
27 <item name="android:colorPrimary">@*android:color/material_blue_grey_800</item>
Alan Viverette782ba172014-08-25 16:15:06 -070028 <item name="android:colorAccent">@*android:color/material_deep_teal_500</item>
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070029
Jeff Sharkey9dd80ae2014-09-16 11:40:03 -070030 <item name="android:listDivider">@*android:drawable/list_divider_material</item>
31
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070032 <item name="android:windowActionBar">false</item>
Jeff Sharkey7e544612014-08-29 15:38:27 -070033 <item name="android:windowActionModeOverlay">true</item>
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070034 <item name="android:windowNoTitle">true</item>
35
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070036 <item name="android:windowSoftInputMode">stateUnspecified|adjustUnspecified</item>
Tomasz Mikolajewski137437e2015-08-03 19:32:34 +090037 <item name="android:alertDialogTheme">@android:style/Theme.Material.Light.Dialog.Alert</item>
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070038 </style>
39
Ben Kwa3512cb22015-08-24 10:15:56 -070040 <style name="DocumentsBaseTheme.FullScreen" parent="@style/Theme.AppCompat.Light.DarkActionBar">
41 <item name="actionBarWidgetTheme">@null</item>
42 <item name="actionBarTheme">@*android:style/ThemeOverlay.Material.Dark.ActionBar</item>
43 <item name="actionBarPopupTheme">@*android:style/ThemeOverlay.Material.Light</item>
Oren Blasbergb243af72015-06-25 19:00:43 -070044
45 <item name="android:listDivider">@*android:drawable/list_divider_material</item>
46
47 <item name="android:windowActionBar">false</item>
48 <item name="android:windowActionModeOverlay">true</item>
49 <item name="android:windowNoTitle">true</item>
50
51 <item name="android:windowSoftInputMode">stateUnspecified|adjustUnspecified</item>
52 </style>
53
Ben Kwa3512cb22015-08-24 10:15:56 -070054 <style name="DocumentsNonDialogTheme" parent="@style/DocumentsBaseTheme.FullScreen">
55 <item name="android:colorPrimaryDark">@*android:color/material_blue_grey_900</item>
56 <item name="android:colorPrimary">@*android:color/material_blue_grey_800</item>
57 <item name="android:colorAccent">@*android:color/material_deep_teal_500</item>
58 </style>
59
Tomasz Mikolajewski2b6b0662015-07-28 14:59:00 +090060 <style name="ActionModeStyle" parent="@android:style/Widget.Material.Light.ActionMode">
61 <item name="android:background">@color/material_grey_600</item>
62 </style>
63
Tomasz Mikolajewski137437e2015-08-03 19:32:34 +090064 <style name="AlertDialogTheme" parent="@android:style/Theme.Material.Light.Dialog.Alert">
65 <item name="android:colorAccent">@color/material_blue_700</item>
66 </style>
67
Ben Kwa3512cb22015-08-24 10:15:56 -070068 <style name="FilesTheme" parent="@style/DocumentsBaseTheme.FullScreen">
Tomasz Mikolajewski2b6b0662015-07-28 14:59:00 +090069 <item name="android:colorPrimaryDark">@color/status_bar_background</item>
70 <item name="android:colorPrimary">@color/material_blue_500</item>
71 <item name="android:colorAccent">@color/material_blue_700</item>
72 <item name="android:actionModeStyle">@style/ActionModeStyle</item>
Steve McKayd0a2a2c2015-03-25 14:35:33 -070073
Tomasz Mikolajewski137437e2015-08-03 19:32:34 +090074 <item name="android:alertDialogTheme">@style/AlertDialogTheme</item>
Steve McKayd0a2a2c2015-03-25 14:35:33 -070075 </style>
76
Jeff Sharkey5e1884d2013-09-10 17:56:39 -070077</resources>