6

我一直在使用片段选项卡主机一段时间,它工作正常。突然我得到这个布局编译错误。

Exception raised during rendering: No tab known for tag null

activity_tabhost_search.xml:

<android.support.v4.app.FragmentTabHost 
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"
        android:orientation="horizontal" />

     <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />
</LinearLayout>

</android.support.v4.app.FragmentTabHost>

请不要关闭它,因为我检查了所有线程,但我无法解决这个问题。

4

2 回答 2

0

因为我认为你必须LinearLayout包围TabHost

也许这也可以帮助你我如何使用 tabHost for Android

另一个主题中链接的 Vogella 选项卡教程效果很好,我目前正在我的应用程序中使用它。

于 2014-01-21T06:40:26.873 回答
0
 <TabWinget android:id="@+id/tabhost"

应改为:

 <TabWidget android:id="@android:id/tabhost"
于 2014-06-19T11:27:51.923 回答