"kind":"error","text":"Error par

作者: zhongjh | 来源:发表于2022-01-21 09:35 被阅读0次

最近公布一个非常丰富的开源库,如果你需要相册、录制、录音等操作,那么这个也许对你有一定的帮助:
https://www.jianshu.com/p/8a0accffd0e1

{"kind":"error","text":"Error parsing XML: not well-formed (invalid token)","sources":[{"file":"D:\DongDongBroker_Android\DongDong_Android\src\main\res\layout\activity_publish_sell_source.xml","position":{"startLine":321}}],"original":"","tool":"AAPT"}

该错误是运行时编译报某个布局文件错误,那为什么不在开发的时候报错呢。
原因是这句代码报错

android:hint="填写<xxxxx>房源编码二维码连接地址"

这句好像没什么错,其实是特殊符号的错误 < >
我们只要转义字符即可,该网站可以查询到相应转义字符
Unicode Lookup: convert special characters
改成以下代码即可通过

android:hint="填写&#60;市房地产信息平台&#62;房源编码二维码连接地址"

相关文章

网友评论

    本文标题:"kind":"error","text":"Error par

    本文链接:https://www.haomeiwen.com/subject/nrhehrtx.html