私は自分のアプリに listpreference を持っています。それをカスタマイズしたいのですが、次のようにテーマを prefs アクティビティに設定できます。
<activity
android:name=".Prefs"
android:label="@string/app_name"
android:theme="@style/PreferencesTheme">
好みのスタイル:
<?xml version="1.0" encoding="utf-8" ?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="PreferencesTheme" parent="android:Theme">
<item name="android:background">#FFDAB9</item>
<item name="android:textColor">@color/red_color</item>
<item name="android:textSize">20sp</item>
</style>
</resources>
上記のスタイルは、ListPreference の背景と ListPreference のタイトル テキストのサイズとテキストの色を変更しますが、 ListPreferenceの概要のテキストの色やサイズは変更しません。
私はこのコードを試しましたが、うまくいきません:
<item name="android:textColorSecondary">@color/red_color</item>
どんな助けでも大歓迎です、ありがとう