Android - FragmentTabHost错误"没有标签为null的标签"

时间:2014-06-15 04:52:38

标签: android xml tabs

我有以下XML:

<FrameLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/frmTabs"
        android:layout_below="@+id/ibTop"
        android:layout_alignParentLeft="true"
        android:layout_alignParentBottom="true"
        android:layout_toLeftOf="@+id/vlImagesRight"
        android:layout_marginRight="10dp"
        android:layout_marginTop="0dp"
        android:layout_marginLeft="5dp"
        android:layout_marginBottom="5dp">

        <android.support.v4.app.FragmentTabHost
        android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:id="@+id/tabHost">

            <RelativeLayout
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical">

                <TabWidget
                android:id="@+id/tabWidget"
                android:layout_width="fill_parent"
                android:layout_alignParentBottom="true"
                android:layout_height="wrap_content" />

                <FrameLayout
                    android:id="@+id/tabContent"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent">
                    <LinearLayout
                    android:id="@+id/tab_a"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"/>

                    <LinearLayout
                        android:id="@+id/tab_b"
                        android:layout_width="fill_parent"
                        android:layout_height="fill_parent"/>

                    <LinearLayout
                        android:id="@+id/tab_c"
                        android:layout_width="fill_parent"
                        android:layout_height="fill_parent"/>
                </FrameLayout>
            </RelativeLayout>
        </android.support.v4.app.FragmentTabHost>
    </FrameLayout>

我的Android Studio显示此错误:

渲染期间引发异常:没有标记为null的标签

评论<android.support.v4.app.FragmentTabHost密钥及其子项会使错误消失。

我可以找到类似this one的线程,但是我想知道在这一段时间之后它仍然没有更简单的解决方案,就像XML本身一样。

1 个答案:

答案 0 :(得分:1)

将布局更改为

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

<FrameLayout
    android:id="@+id/realtabcontent"
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="1" />

<android.support.v4.app.FragmentTabHost
    android:id="@android:id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >


    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_weight="0" />
</android.support.v4.app.FragmentTabHost>

</LinearLayout>