android偏好类别背景颜色

Bru*_*eri 4 android background-color preferenceactivity

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

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

通过这个链接,我发现了这一点,但对我来说没有任何作用.这些就是我所做的:

<resources>
    <style name="setBackgroundTheme" parent="android:Theme">
        <item name="android:background">@color/darkbluelogo</item>
    </style>
</resources>
Run Code Online (Sandbox Code Playgroud)

在onCreate中,我将主题设置为:

setTheme(R.style.setBackgroundTheme);
Run Code Online (Sandbox Code Playgroud)

cyc*_*oid 8

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

<PreferenceCategory
    android:layout="@layout/your_layout">
Run Code Online (Sandbox Code Playgroud)