我一直在使用片段标签主机一段时间,它运行正常。 突然间我得到了这个布局编译错误。
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>
请不要将它关闭,因为我检查了所有线程,但我无法解决此问题。
答案 0 :(得分:0)
我认为你必须用LinearLayout
TabHost
也许这可以帮助你How do I use tabHost for Android
Vogella Tab教程与其他主题相关联,效果很好,我现在正在我的应用中使用它。
答案 1 :(得分:0)
<TabWinget android:id="@+id/tabhost"
应更改为:
<TabWidget android:id="@android:id/tabhost"