我将以下主题添加到我的应用程序中,背景颜色为白色。但我收到以下错误,我不确定我哪里出错了。
Error: Color types not allowed (at 'android:windowBackground' with value '#FF0000')
.
<style name="MyTheme" parent="@android:style/Theme.Light">
<item name="android:windowBackground">#FF0000</item>
</style>
并引用了 mymanifest 中的主题:
<activity
android:name=".MyActivity"
android:theme="@style/MyTheme" />
有什么想法或建议吗?谢谢