关于Error parsing XML: not well-formed (invalid token)的解决方法

         第一次遇到这个问题,在网上查找了一下,总结出2种可能:

          1.可能是输入时使用了全角,导致有多余空格。

          2.丢失相关布局标签。

          3.可能是中未标明utf-8编码。

         不过两种可能都看了下,没有出现在我的代码中,最后解决是靠下面的方法:

         把鼠标箭头移到出错误的layout上 点击鼠标右键选择Source然后再选Format,再clean一下。


         其他参考:

                                      android:id="@+id/operation"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" 
        />
改成
 
        android:id="@+id/operation"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" 
        


你可能感兴趣的:(android,errors)