blob: 22add986febbfc2f29a647f9075818eaf9c7fab5 [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" />
Ben Kwa2c15ce62015-09-04 10:44:50 -070020 <style name="ActionBarTheme" parent="@*android:style/ThemeOverlay.Material.Dark.ActionBar" />
21 <style name="ActionBarPopupTheme" parent="@*android:style/ThemeOverlay.Material.Light" />
Jeff Sharkey67bf49d2014-08-05 10:14:45 -070022
Ben Kwa3512cb22015-08-24 10:15:56 -070023 <style name="DocumentsTheme" parent="@style/DocumentsBaseTheme">
24 <item name="actionBarWidgetTheme">@null</item>
Ben Kwa2c15ce62015-09-04 10:44:50 -070025 <item name="actionBarTheme">@style/ActionBarTheme</item>
26 <item name="actionBarPopupTheme">@style/ActionBarPopupTheme</item>
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070027
Ben Kwa2c15ce62015-09-04 10:44:50 -070028 <item name="android:colorPrimaryDark">@color/primary_dark</item>
29 <item name="android:colorPrimary">@color/primary</item>
30 <item name="android:colorAccent">@color/accent</item>
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070031
Jeff Sharkey9dd80ae2014-09-16 11:40:03 -070032 <item name="android:listDivider">@*android:drawable/list_divider_material</item>
33
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070034 <item name="android:windowActionBar">false</item>
Jeff Sharkey7e544612014-08-29 15:38:27 -070035 <item name="android:windowActionModeOverlay">true</item>
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070036 <item name="android:windowNoTitle">true</item>
37
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070038 <item name="android:windowSoftInputMode">stateUnspecified|adjustUnspecified</item>
Tomasz Mikolajewski137437e2015-08-03 19:32:34 +090039 <item name="android:alertDialogTheme">@android:style/Theme.Material.Light.Dialog.Alert</item>
Jeff Sharkeye6fcceb2014-07-28 16:38:52 -070040 </style>
41
Ben Kwa3512cb22015-08-24 10:15:56 -070042 <style name="DocumentsBaseTheme.FullScreen" parent="@style/Theme.AppCompat.Light.DarkActionBar">
43 <item name="actionBarWidgetTheme">@null</item>
Ben Kwa2c15ce62015-09-04 10:44:50 -070044 <item name="actionBarTheme">@style/ActionBarTheme</item>
45 <item name="actionBarPopupTheme">@style/ActionBarPopupTheme</item>
Oren Blasbergb243af72015-06-25 19:00:43 -070046
47 <item name="android:listDivider">@*android:drawable/list_divider_material</item>
48
49 <item name="android:windowActionBar">false</item>
50 <item name="android:windowActionModeOverlay">true</item>
51 <item name="android:windowNoTitle">true</item>
52
53 <item name="android:windowSoftInputMode">stateUnspecified|adjustUnspecified</item>
54 </style>
55
Ben Kwa3512cb22015-08-24 10:15:56 -070056 <style name="DocumentsNonDialogTheme" parent="@style/DocumentsBaseTheme.FullScreen">
Ben Kwa2c15ce62015-09-04 10:44:50 -070057 <item name="android:colorPrimaryDark">@color/primary_dark</item>
58 <item name="android:colorPrimary">@color/primary</item>
59 <item name="android:colorAccent">@color/accent</item>
Ben Kwa3512cb22015-08-24 10:15:56 -070060 </style>
61
Tomasz Mikolajewski2b6b0662015-07-28 14:59:00 +090062 <style name="ActionModeStyle" parent="@android:style/Widget.Material.Light.ActionMode">
63 <item name="android:background">@color/material_grey_600</item>
64 </style>
65
Tomasz Mikolajewski137437e2015-08-03 19:32:34 +090066 <style name="AlertDialogTheme" parent="@android:style/Theme.Material.Light.Dialog.Alert">
67 <item name="android:colorAccent">@color/material_blue_700</item>
68 </style>
69
Ben Kwa3512cb22015-08-24 10:15:56 -070070 <style name="FilesTheme" parent="@style/DocumentsBaseTheme.FullScreen">
Ben Kwa2c15ce62015-09-04 10:44:50 -070071 <item name="android:colorPrimaryDark">@color/material_blue_700</item>
Tomasz Mikolajewski2b6b0662015-07-28 14:59:00 +090072 <item name="android:colorPrimary">@color/material_blue_500</item>
73 <item name="android:colorAccent">@color/material_blue_700</item>
74 <item name="android:actionModeStyle">@style/ActionModeStyle</item>
Steve McKayd0a2a2c2015-03-25 14:35:33 -070075
Tomasz Mikolajewski137437e2015-08-03 19:32:34 +090076 <item name="android:alertDialogTheme">@style/AlertDialogTheme</item>
Steve McKayd0a2a2c2015-03-25 14:35:33 -070077 </style>
78
Jeff Sharkey5e1884d2013-09-10 17:56:39 -070079</resources>