我有listpreference在我的應用程序,我想自定義,我可以爲波紋管設置主題首選項活動:更改listpreference摘要文字的顏色和大小
<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>
任何幫助將不勝感激,謝謝
我複製鏈接,並創建佈局,並在它上面通過引用引用它作爲你解釋,但它不工作 – androidqq6