0

我有以下 XML 代码:

    <?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@android:id/tabhost" >

    <LinearLayout android:orientation="vertical" 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent">
        <TabWidget android:id="@android:id/tabs"
           android:layout_width="fill_parent" 
           android:layout_height="wrap_content">
        </TabWidget>
        <FrameLayout android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent">

        </FrameLayout>

    </LinearLayout>

</TabHost> 

错误消息:“根元素之后的文档中的标记执行良好。所有标签都已关闭,这可能是什么原因?

4

1 回答 1

0

尝试ctrl++shiftF您的 xml 代码,这将格式化代码并在清理项目后重试。它将起作用。

于 2012-07-26T08:28:13.257 回答