Error parsing XML: unbound prefix

前端之家收集整理的这篇文章主要介绍了Error parsing XML: unbound prefix前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Error parsing XML: unbound prefix
错误现象:
在mmm编译apk时,解析layout xml文件出错,错误信息如下:
res/layout/main.xml:2: error: Error parsing XML: unbound prefix

错误原因:
res/layout/main.xml第二行内容如下:
<LinearLayout xmlns: Android=”http://schemas.android.com/apk/res/android”

注意,上面这行的Android应该小写才对,即: <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”

原文链接:https://www.f2er.com/xml/297020.html

猜你在找的XML相关文章