我创建了一个Android项目,其中包含导航抽屉活动。
但活动的背景是黑色的。
我知道我可以使用XML或Java将背景颜色更改为白色。但每次我这样做,我都需要改变其他观点。我检查了样式文件。但它并没有包含任何关于背景颜色的标签。
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>
有没有解决方法呢?谢谢!
答案 0 :(得分:1)
从Theme.AppCompat.Light
答案 1 :(得分:0)
您可以从Theme.AppCompat.Light扩展您的应用主题,或者您可以将背景颜色传递到活动布局的根视图。