13

我正在尝试更改 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);
4

1 回答 1

35

将此添加到主题中的 style.xml:

<item name="android:textColorSecondary">@color/light_gray</item>
于 2013-04-03T15:16:54.053 回答