Android首选项屏幕,更改标题文本后面的颜色

时间:2014-12-10 08:29:27

标签: android android-layout

我已将背景颜色更改为我的首选项屏幕,但标题栏表现得很奇怪。

我将此作为我在偏好活动清单中设置的主题,如下所示:

<style name="PrefTheme">
    <item name="android:background">@color/activity_default_bg_color</item>
</style>

哪个有效,但标题栏现在看起来像这样:

Image with no color to background

我尝试过使用其他一些属性进行更改但无法找到正确的属性。

由于

史蒂夫

编辑:

查看编辑文本弹出窗口,它们也已更改

Edit text

我尝试更改弹出窗口,但无法正常工作

<item name="android:windowBackground">@color/activity_default_bg_color</item>
<item name="android:popupBackground">@color/activity_default_bg_color</item>

1 个答案:

答案 0 :(得分:1)

这是问题所在:

<item name="android:background">@color/activity_default_bg_color</item>

我不得不用这个来代替

 <item name="android:windowBackground">@color/activity_default_bg_color</item>

这解决了上述问题。

希望这有助于某人。

由于

史蒂夫

编辑:

结束结果:

enter image description here enter image description here