XML:尾部不允许内容

前端之家收集整理的这篇文章主要介绍了XML:尾部不允许内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我收到这些错误
Multiple annotations found at this line:
    - error: Error parsing XML: not well-formed 
     (invalid token)
    - Content is not allowed in trailing section.

在这个XML文件上…

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item 
    android:state_enabled="false"
        android:drawable="@drawable/btn_red" />
    <item 
        android:state_pressed="true" 
        android:state_enabled="true"
        android:drawable="@drawable/btn_orange" />
    <item 
        android:state_focused="true" 
        android:state_enabled="true"
        android:drawable="@drawable/btn_orange" />
    <item 
        android:state_enabled="true"
        android:drawable="@drawable/btn_black" />
</selector>

知道XML的人可能很简单.任何想法?

如果您从链接到的网站粘贴,您有两个小连字符,你不想要.在< / selector>结束之后和刚刚在第一个< item>之前的一个.摆脱那些,一切都会好起来的.
原文链接:https://www.f2er.com/xml/292806.html

猜你在找的XML相关文章