diff options
author | Fabrice Di Meglio <fdimeglio@google.com> | 2014-05-16 20:28:38 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-05-16 20:28:39 +0000 |
commit | b99bd3fcc608a3954e55a27ed755dbd4faefcc60 (patch) | |
tree | 5b1205ecbd3e4f6e25c2e7d2eb4078126ec7859d /res/values | |
parent | 7586a01241cdbae18d822dfeb1db1005cbbbc95d (diff) | |
parent | 4e524b49358d03f23497b9574fe3df94f6a8a36f (diff) | |
download | packages_apps_Settings-b99bd3fcc608a3954e55a27ed755dbd4faefcc60.zip packages_apps_Settings-b99bd3fcc608a3954e55a27ed755dbd4faefcc60.tar.gz packages_apps_Settings-b99bd3fcc608a3954e55a27ed755dbd4faefcc60.tar.bz2 |
Merge "Improve Theming"
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/themes.xml | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/res/values/themes.xml b/res/values/themes.xml index 97dc0d4..9612530 100644 --- a/res/values/themes.xml +++ b/res/values/themes.xml @@ -59,7 +59,7 @@ <item name="wifi_signal">@drawable/wifi_signal_light</item> </style> - <style name="Theme.Settings" parent="@android:style/Theme.Quantum.Light"> + <style name="Theme.Settings" parent="@android:style/Theme.Quantum.Light.DarkActionBar"> <item name="@*android:preferenceHeaderPanelStyle">@style/PreferenceHeaderPanelSinglePane</item> <item name="@*android:preferencePanelStyle">@style/PreferencePanelSinglePane</item> <item name="@*android:preferenceListStyle">@style/PreferenceHeaderListSinglePane</item> @@ -71,22 +71,11 @@ <item name="ic_wps">@drawable/ic_wps_dark</item> <item name="wifi_signal">@drawable/wifi_signal_dark</item> - <item name="android:actionBarTheme">@style/Theme.Settings.ActionBar.Quantum</item> - - <item name="android:colorPrimary">@color/actionbar_background_color</item> - <item name="android:colorPrimaryLight">@color/quantum_blue_grey_100</item> - <item name="android:colorPrimaryDark">@color/quantum_blue_grey_700</item> - <item name="android:colorAccent">@color/quantum_orange_A200</item> - </style> - - <style name="Theme.Settings.ActionBar.Quantum" parent="@android:style/Theme.Quantum"> - <!--Set the background color--> <item name="android:colorPrimary">@color/actionbar_background_color</item> - <!--Set the activated state color for the on/off switches--> - <item name="android:colorControlActivated">?android:attr/colorControlNormal</item> - <!--Other colors--> - <item name="android:colorPrimaryLight">@color/quantum_blue_grey_100</item> - <item name="android:colorPrimaryDark">@color/quantum_blue_grey_700</item> + <!-- Used by the bouncing effect for ListView and ScrollView --> + <item name="android:colorPrimaryLight">@color/actionbar_background_color</item> + <!-- Used by the StatusBar and NavBar --> + <item name="android:colorPrimaryDark">@color/actionbar_background_color</item> <item name="android:colorAccent">@color/quantum_orange_A200</item> </style> |