我想通过主题在我的整个应用程序中更改backgroundColor。这是我的努力,虽然不成功:
RES /值/ 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上试过这个。我究竟做错了什么?有什么建议吗?