代码没关系,但我得到错误 - XML文档结构必须在同一个实体内开始和结束

时间:2013-12-22 00:02:14

标签: android xml

我迈出了android编程和XML的第一步。我正在使用Big Nerd Ranch Guide书。在Eclipse中,我使用了书中给出的XML,我得到了错误XML文档结构必须在同一实体内开始和结束。

我该如何解决这个问题?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="24dp"
        android:text="@string/question_text" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >    
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/true_button" />
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/false_button" />
    </LinearLayout>    
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

问题解决了。我删除了代码并保存了xml文件。之后,我用上面的代码替换它并保存。错误消失了。从“自动构建项目”启用时起,它可能是一个重现。

奇怪。