Android 编译错误——布局 Error parsing XML: not well-formed (invalid token)

时间:2023-03-08 17:34:14

在修改了Android布局文件后,编译出现Error parsing XML: not well-formed (invalid token)。

首先先排查xml文件的编码格式是否为UTF-8, <?xml version="1.0" encoding="utf-8"?> ,注意,从别处copy的要留意编码格式!

还有各个标签是否有遗漏,把鼠标箭头移到出错误的layout上 点击鼠标右键选择Source然后再选Format。

都没有问题,结果发现报错处(第9行):

 <TextView

      android:id="@+id/TetxView1"

      android:layout_width="wrap_content"

      android:layout_height=“wrap_content”

      android:text=">31"

      android:textSize="@dimen/text_size"

      android:textColor="@color/text_color"

    />

在控件属性值里包含“>”或“<”,就会出错,建议在代码中赋值!