【发布时间】:2013-03-09 14:42:23
【问题描述】:
我将以下主题添加到我的应用程序中,背景颜色为白色。但我收到以下错误,我不确定我哪里出错了。
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" />
有什么想法或建议吗?谢谢
【问题讨论】:
标签: android xml themes background-color