【发布时间】:2026-01-08 12:55:01
【问题描述】:
我想通过主题更改整个应用程序中的背景颜色。这是我的努力,但没有成功:
res/values/styles.xml
<resources>
<color name="bgColor">#FFFFFF</color>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:colorBackground">@color/bgColor</item>
<item name="android:windowBackground">@color/bgColor</item>
</style>
</resources>
Manifest.xml
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
我在 android 4.4 和 5.0 上试过这个。我究竟做错了什么?有什么建议吗?
【问题讨论】:
标签: android background themes