1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 Copyright 2018 Google Inc. All rights reserved. 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 http://www.apache.org/licenses/LICENSE-2.0 8 Unless required by applicable law or agreed to in writing, software 9 distributed under the License is distributed on an "AS IS" BASIS, 10 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 See the License for the specific language governing permissions and 12 limitations under the License. 13 --> 14 <resources> 15 16 <!-- Base application theme. --> 17 <style name="CustomAppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> 18 <!-- Customize your theme here. --> 19 <item name="colorPrimary">@color/colorPrimary</item> 20 <item name="colorPrimaryDark">@color/colorPrimaryDark</item> 21 <item name="colorSecondary">@color/colorSecondary</item> 22 <item name="colorAccent">@color/colorAccent</item> 23 </style> 24 25 <style name="CustomAppTheme.NoActionBar"> 26 <item name="windowActionBar">false</item> 27 <item name="windowNoTitle">true</item> 28 </style> 29 30 <style name="CustomAppTheme.AppBarOverlay" 31 parent="ThemeOverlay.AppCompat.Dark.ActionBar" /> 32 33 <style name="CustomAppTheme.PopupOverlay" 34 parent="ThemeOverlay.AppCompat.Light" /> 35 36 </resources> 37