您的位置:首页 > 移动开发 > Android开发

colors xml: “Attribute is missing the Android namespace prefix”

2014-06-23 01:33 435 查看
Question:This is my colors.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="white">#ffffff</color>
</resources>
This gives me the following error: Attribute is missing the Android namespace prefix What can I change to make this error go away?Solution:
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<color name="white">#FFFFFF</color>
</resources>


                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: