Attribute is missing the Android namespace prefix问题

来源:互联网 发布:系统优化软件排行榜 编辑:程序博客网 时间:2024/05/16 12:56
自己在写xml文件用来解析的时候,出现了一点问题,我把需要解析的xml文件放在layout文件的目录下,我先贴一段代码

<?xml version="1.0" encoding="utf-8"?><persons>    <person id="10" >        <name>xiaohong</name>        <age>18</age>        <sex>woman</sex>    </person>    <person id="20" >        <name>xiaoming</name>        <age>16</age>        <sex>man</sex>    </person></persons>

这个时候,person节点里面的属性id就会报出Attribute is missing the Android namespace prefix这个错误,之后我把自己写的xml文件放在了src目录底下,person的属性id就没有报错了

0 0