第一次遇到这个问题,在网上查找了一下,总结出2种可能:
0.不是别特殊符号(<,>等等)
1.可能是输入时使用了全角,导致有多余空格。
2.丢失相关布局标签。
3.可能是<?xml version="1.0" encoding="utf-8"?>中未标明utf-8编码。
不过两种可能都看了下,没有出现在我的代码中,最后解决是靠下面的方法:
把鼠标箭头移到出错误的layout上 点击鼠标右键选择Source然后再选Format,再clean一下。
其他参考:
<TextView
android:id="@+id/operation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"
/>
改成
<TextView>
android:id="@+id/operation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"
</TextView>
关于Error parsing XML: not well-formed (invalid token)的解决方法
最新推荐文章于 2024-09-23 17:47:23 发布