Android Tabcontent与标签重叠

时间:2015-05-13 17:15:59

标签: android xml android-layout tabs

您好我需要Tab的帮助。得到一些布局建议需要咨询。 我当前的tabcontent似乎与我的标签重叠。无论如何要防止这种情况?

Problem with layout

main.xml中

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <LinearLayout
        android:id="@+id/LinearLayout01"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical">

        <FrameLayout
            android:id="@android:id/tabcontent"
            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" />

        </FrameLayout>
    </LinearLayout>
</TabHost>

1 个答案:

答案 0 :(得分:3)

您已将标签放入tabcontent。正确的布局是这个

<LinearLayout>
    <TabWidget />
    <FrameLayout />
</LinearLayout>

我猜您正在关注this tutorial。第一个XML布局就是你的样子。