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

Posted Ghimtim

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 编译错误——布局 Error parsing XML: not well-formed (invalid token)相关的知识,希望对你有一定的参考价值。

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

 

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

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

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

 1 <TextView
 2 
 3      android:id="@+id/TetxView1"
 4 
 5      android:layout_width="wrap_content"
 6 
 7      android:layout_height=“wrap_content”
 8 
 9      android:text=">31"
10 
11      android:textSize="@dimen/text_size"
12 
13      android:textColor="@color/text_color"
14 
15    />

 

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

 

以上是关于Android 编译错误——布局 Error parsing XML: not well-formed (invalid token)的主要内容,如果未能解决你的问题,请参考以下文章

错误记录Android Studio 编译报错 ( VirtualApp 编译 NDK 报错 | Error:A problem occurred configuring project ‘: )(代

错误记录Android Studio 编译报错 ( VirtualApp 编译 NDK 报错 | Error:A problem occurred configuring project ‘: )(代

android 编译错误 Error:(1, 0) Plugin with id 'com.android.application' not found.

Android 编译错误:CreateProcess error=206, 文件名或扩展名太长。

Android 编译错误:CreateProcess error=206, 文件名或扩展名太长。

Android 编译错误:CreateProcess error=206, 文件名或扩展名太长。