android.support.v4.app.FragmentTabHost以XML格式呈现

时间:2017-02-25 23:38:22

标签: android xml fragment-tab-host

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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

        <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" />

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

        </LinearLayout>

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

</RelativeLayout>

我得到了渲染问题

渲染期间引发的异常:必须调用带有Context和FragmentManager的setup()

但如果我从android.support.v4.app.FragmentTabHost更改为TabHost,则可以。我做错了什么?

0 个答案:

没有答案