diff options
| author | 2018-11-16 18:29:48 +0000 | |
|---|---|---|
| committer | 2018-11-16 18:29:48 +0000 | |
| commit | 54756a669e1044ee089a8d0a9f219eec5381bc31 (patch) | |
| tree | d0baddf99e76d3016af9658749d607ad6da6a0e6 | |
| parent | 14805a777d6660f8598e637a150e1a89472b6e91 (diff) | |
| parent | b47aa86ee30c1b82b3f84a7abb914ef8ef398d57 (diff) | |
Merge "Update framework Settings to follow dark theme UI"
6 files changed, 10 insertions, 25 deletions
diff --git a/core/res/res/values-night/themes_device_defaults.xml b/core/res/res/values-night/themes_device_defaults.xml index 931674a8c0cb..84c6446e81ce 100644 --- a/core/res/res/values-night/themes_device_defaults.xml +++ b/core/res/res/values-night/themes_device_defaults.xml @@ -52,6 +52,9 @@ easier. <!-- DeviceDefault theme for a window that should look like the Settings app. --> <style name="Theme.DeviceDefault.Settings" parent="Theme.DeviceDefault"> <item name="colorPrimaryDark">@color/primary_dark_device_default_settings</item> + <item name="colorBackground">@color/primary_dark_device_default_settings</item> + + <item name="listDivider">@color/list_divider_color_dark</item> </style> <!-- Theme for the dialog shown when an app crashes or ANRs. --> diff --git a/core/res/res/values/colors_device_defaults.xml b/core/res/res/values/colors_device_defaults.xml index 0fe80a154f7a..ded916fbe7a3 100644 --- a/core/res/res/values/colors_device_defaults.xml +++ b/core/res/res/values/colors_device_defaults.xml @@ -42,4 +42,7 @@ <!-- Error color --> <color name="error_color_device_default_dark">@color/error_color_material_dark</color> <color name="error_color_device_default_light">@color/error_color_material_light</color> + + <color name="list_divider_color_light">#64000000</color> + <color name="list_divider_color_dark">#85ffffff</color> </resources> diff --git a/core/res/res/values/themes_device_defaults.xml b/core/res/res/values/themes_device_defaults.xml index 3385527ee6ff..fa009bd60c72 100644 --- a/core/res/res/values/themes_device_defaults.xml +++ b/core/res/res/values/themes_device_defaults.xml @@ -1475,6 +1475,8 @@ easier. <!-- Toolbar attributes --> <item name="toolbarStyle">@style/Widget.DeviceDefault.Toolbar</item> + + <item name="listDivider">@color/list_divider_color_light</item> </style> <!-- @hide DeviceDefault theme for a window that should use Settings theme colors diff --git a/packages/SettingsLib/res/drawable/list_divider_dark.xml b/packages/SettingsLib/res/drawable/list_divider_dark.xml deleted file mode 100644 index 5773d9ef710c..000000000000 --- a/packages/SettingsLib/res/drawable/list_divider_dark.xml +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- - Copyright (C) 2017 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. - --> - -<shape - xmlns:android="http://schemas.android.com/apk/res/android"> - <solid android:color="#64000000" /> - <size - android:height="1dp" - android:width="1dp" /> -</shape> diff --git a/packages/SettingsLib/res/layout/preference_two_target_divider.xml b/packages/SettingsLib/res/layout/preference_two_target_divider.xml index 60efed41870c..b81dd83d2586 100644 --- a/packages/SettingsLib/res/layout/preference_two_target_divider.xml +++ b/packages/SettingsLib/res/layout/preference_two_target_divider.xml @@ -27,5 +27,5 @@ <View android:layout_width="1dp" android:layout_height="match_parent" - android:background="@drawable/list_divider_dark" /> + android:background="?android:attr/listDivider" /> </LinearLayout>
\ No newline at end of file diff --git a/packages/SettingsLib/res/values/colors.xml b/packages/SettingsLib/res/values/colors.xml index 02b7ea6ef7a8..66bbb3a6c890 100644 --- a/packages/SettingsLib/res/values/colors.xml +++ b/packages/SettingsLib/res/values/colors.xml @@ -18,4 +18,5 @@ <color name="disabled_text_color">#66000000</color> <!-- 38% black --> <color name="usage_graph_dots">@*android:color/tertiary_device_default_settings</color> + <color name="list_divider_color">#64000000</color> </resources> |