我正在尝试更改 CheckBoxPreference 的摘要文本颜色。我通过指定主题更改了标题的文本颜色,但它似乎没有注册到摘要部分。这是我的 theme.xml 文件:
<?xml version="1.0" encoding="UTF-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="settings_theme" parent="android:Theme.Light">
<item name="android:textColor">@color/light_gray</item>
</style>
</resources>
我在我的设置活动的 onCreate 方法中调用它:
setTheme(R.style.settings_theme);