You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
3.3 KiB
75 lines
3.3 KiB
7 months ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!--
|
||
|
Copyright (C) 2016 The Android Open Source Project
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
-->
|
||
|
|
||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||
|
|
||
|
<style name="Theme.DeskClock" parent="Theme.AppCompat.NoActionBar">
|
||
|
<item name="android:colorBackgroundFloating" tools:targetApi="23">
|
||
|
?attr/colorBackgroundFloating
|
||
|
</item>
|
||
|
<item name="android:navigationBarColor" tools:targetApi="21">?attr/colorPrimaryDark</item>
|
||
|
<item name="android:popupTheme" tools:targetApi="21">?attr/popupTheme</item>
|
||
|
<item name="android:timePickerStyle" tools:targetApi="21">@style/Widget.TimePicker</item>
|
||
|
<item name="android:windowBackground">@color/default_background</item>
|
||
|
<item name="android:windowContentOverlay">@null</item>
|
||
|
|
||
|
<!-- Attributes from androidx.appcompat.appcompat -->
|
||
|
<item name="colorAccent">#DA4336</item>
|
||
|
<item name="colorBackgroundFloating">#303030</item>
|
||
|
<item name="colorControlActivated">@android:color/white</item>
|
||
|
<item name="colorControlNormal">?android:attr/textColorPrimary</item>
|
||
|
<item name="colorPrimaryDark">#66000000</item>
|
||
|
<item name="imageButtonStyle">@style/Widget.ImageButton</item>
|
||
|
<item name="popupTheme">@style/ThemeOverlay.Popup</item>
|
||
|
</style>
|
||
|
|
||
|
<style name="Theme.DeskClock.Settings">
|
||
|
<!-- Attributes from androidx.appcompat.appcompat -->
|
||
|
<item name="actionBarStyle">@style/Widget.ActionBar</item>
|
||
|
<item name="colorControlActivated">?attr/colorAccent</item>
|
||
|
<item name="windowActionBar">true</item>
|
||
|
<item name="windowNoTitle">false</item>
|
||
|
|
||
|
<!-- Attributes from androidx.preference.-->
|
||
|
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
|
||
|
</style>
|
||
|
|
||
|
<style name="Theme.DeskClock.RingtonePicker">
|
||
|
<!-- Attributes from androidx.appcompat.appcompat -->
|
||
|
<item name="actionBarStyle">@style/Widget.ActionBar</item>
|
||
|
<item name="windowActionBar">true</item>
|
||
|
<item name="windowNoTitle">false</item>
|
||
|
</style>
|
||
|
|
||
|
<style name="Theme.DeskClock.CitySelection">
|
||
|
<!-- Attributes from androidx.appcompat.appcompat -->
|
||
|
<item name="actionBarStyle">@style/Widget.ActionBar.NoTitle</item>
|
||
|
<item name="windowActionBar">true</item>
|
||
|
<item name="windowNoTitle">false</item>
|
||
|
</style>
|
||
|
|
||
|
<style name="ThemeOverlay.Control.Accent" parent="ThemeOverlay.AppCompat">
|
||
|
<!-- Attributes from androidx.appcompat.appcompat -->
|
||
|
<item name="colorControlActivated">?attr/colorAccent</item>
|
||
|
</style>
|
||
|
|
||
|
<style name="ThemeOverlay.Popup" parent="ThemeOverlay.AppCompat">
|
||
|
<item name="android:colorBackground">?attr/colorBackgroundFloating</item>
|
||
|
</style>
|
||
|
|
||
|
</resources>
|