4

我尝试自定义偏好类别的背景颜色。我已经更改了首选项本身的背景颜色,但我找不到如何更改类别背景颜色的方法。

我找到了两种方法,但它们对我不起作用: 更改偏好类别标签颜色背景

通过这个链接,我找到了这个,但我没有尝试过对我有用。这些布局片段是我迄今为止尝试过的:

<resources>
    <style name="setBackgroundTheme" parent="android:Theme">
        <item name="android:background">@color/darkbluelogo</item>
    </style>
</resources>

onCreate方法中,我将主题设置为:

setTheme(R.style.setBackgroundTheme);
4

1 回答 1

8

使用您的背景颜色自定义布局文件,将其设置在您的 PreferenceCategory 中:

<PreferenceCategory
    android:layout="@layout/your_layout">
于 2012-12-08T03:41:44.907 回答