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

人生难得几回搏,此时不搏待何时。这篇文章主要讲述Android 编译错误——布局 Error parsing XML: not well-formed (invalid token)相关的知识,希望能为你提供帮助。
在修改了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 3android:id="@+id/TetxView1" 4 5android:layout_width="wrap_content" 6 7android:layout_height=“wrap_content” 8 9android:text="> 31" 10 11android:textSize="@dimen/text_size" 12 13android:textColor="@color/text_color" 14 15/>

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

    推荐阅读