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);