2
我想更改我的偏好類別的顏色,並將默認水平線更改爲藍色。這可能嗎?在android中更改偏好類別的文本顏色和水平顏色
我試圖設置主題爲偏好設置如下:
<style name="myPreferenceTheme" parent="@style/AppBaseTheme">
<item name="android:textColor">@color/blue</item>
</style>
,但我得到了作爲輸出如下:
我preference.xml看起來是這樣的:
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<PreferenceCategory
android:title="ACCOUNT" >
<Preference
android:key="googleAccount"
android:summary=""
android:title="Google Account" >
</Preference>
<Preference
android:key="signoutmenu"
android:summary=""
android:title="Sign out" >
</Preference>
</PreferenceScreen>
有人可以幫我解決這個問題像上面的截圖中顯示的起訴?
謝謝!
它不是一個答案。但這可能會幫助你 http://stackoverflow.com/questions/6297635/custom-preferencecategory-headings – 2014-09-10 17:28:09