Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 688c65c8 authored by Edgar Wang's avatar Edgar Wang
Browse files

Fix dropdown text is not clear in dark mode

- Move spinner color into SettingsTheme.
- Set spinnerItemStyle & spinnerDropDownItemStyle

Fixes: 222126610
Test: manual
Change-Id: I90da89d30826939a232f7dd17c4fec882b054915
parent 6cc0fa4d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ android_library {

    static_libs: [
        "androidx.preference_preference",
        "SettingsLibSettingsTheme",
    ],

    sdk_version: "system_current",
+0 −20
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2022 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>
    <color name="settingslib_spinner_title_color">@android:color/system_neutral1_900</color>
    <color name="settingslib_spinner_dropdown_color">@android:color/system_neutral2_700</color>
</resources>
+3 −0
Original line number Diff line number Diff line
@@ -79,4 +79,7 @@
    <color name="settingslib_colorAccentSecondary">@color/settingslib_accent_secondary_device_default</color>

    <color name="settingslib_colorSurface">@color/settingslib_surface_light</color>

    <color name="settingslib_spinner_title_color">@android:color/system_neutral1_900</color>
    <color name="settingslib_spinner_dropdown_color">@android:color/system_neutral2_700</color>
</resources>
+11 −0
Original line number Diff line number Diff line
@@ -54,4 +54,15 @@
        <item name="android:layout_marginTop">16dp</item>
        <item name="android:layout_marginBottom">8dp</item>
    </style>

    <style name="SpinnerItem.SettingsLib"
           parent="@android:style/Widget.DeviceDefault.TextView.SpinnerItem">
        <item name="android:textColor">@color/settingslib_spinner_dropdown_color</item>
    </style>

    <style name="SpinnerDropDownItem.SettingsLib"
           parent="@android:style/Widget.Material.DropDownItem.Spinner">
        <item name="android:textColor">@color/settingslib_spinner_dropdown_color</item>
    </style>

</resources>
+2 −0
Original line number Diff line number Diff line
@@ -27,6 +27,8 @@
        <item name="android:switchStyle">@style/Switch.SettingsLib</item>
        <item name="android:progressBarStyleHorizontal">@style/HorizontalProgressBar.SettingsLib</item>
        <item name="android:spinnerStyle">@style/Spinner.SettingsLib</item>
        <item name="android:spinnerItemStyle">@style/SpinnerItem.SettingsLib</item>
        <item name="android:spinnerDropDownItemStyle">@style/SpinnerDropDownItem.SettingsLib</item>
    </style>

    <!-- Using in SubSettings page including injected settings page -->