error: Error parsing XML: unbound prefix

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

布局文件出现这个错误提示: 前缀错误,为嘛了?

出现的原因是:

第三方库里的自定义控件: 因为我复制过来的,如下 的 app就没有命名空间,前缀app系统当然不认识了,可惜悲催的是错误提示是在第一行代码。。

加上命名空间就好了:xmlns:app="http://schemas.android.com/apk/res-auto"


<com.jess.ui.TwoWayGridView android:background="#E8E8E8" app:cacheColorHint="#00000000" app:columnWidth="@dimen/pdf_glaritem_width" app:gravity="center" app:horizontalSpacing="0dp"

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

猜你在找的XML相关文章