使用 PreferenceFragmentCompat 时如何设置文本颜色?

Roh*_*han 3 android android-preferences android-theme

我正在覆盖PreferenceFragmentCompatv7 支持库中的类,以在我的应用程序中提供设置屏幕。我需要设置PreferenceScreen.

这是我尝试过的(在styles.xml)-

<style name="AppTheme.Preference" parent="@style/PreferenceThemeOverlay">
    <item name="android:textColor">@android:color/holo_red_dark</item>
</style>

<style name="AppTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="preferenceTheme">@style/AppTheme.Preference</item>
</style>
Run Code Online (Sandbox Code Playgroud)

但这不会改变颜色。如何设置首选项屏幕文本颜色?

Roh*_*han 5

我通过使用android:textColorPrimary而不是android:textColor.