【问题标题】:Android - PreferenceActivity - Change color of Summary text of CheckBoxPreferenceAndroid - PreferenceActivity - 更改 CheckBoxPreference 的摘要文本的颜色
【发布时间】:2013-04-03 15:11:25
【问题描述】:

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

【问题讨论】:

    标签: android android-preferences


    【解决方案1】:

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

    <item name="android:textColorSecondary">@color/light_gray</item>
    

    【讨论】:

    • 我见过的最好和最多的解决方案
    猜你喜欢
    • 1970-01-01
    • 2012-08-08
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-04-29
    • 1970-01-01
    相关资源
    最近更新 更多