我试图通过在主应用程序主题中添加一行来更改应用程序中的基本背景颜色:
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:background">@android:color/white</item>
</style>
然而,它正在级联到像操作栏和徽标这样的子对象:
我做错了什么?
答案 0 :(得分:2)
使用android:windowBackground
代替background
属性:
<item name="android:windowBackground">@android:color/white</item>