我的应用程序中有 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>
任何帮助将不胜感激,谢谢