FragmentTabHost选项卡重叠tabcontent

时间:2015-01-28 20:05:00

标签: android android-fragments android-support-library

我正在使用FragmentTabHost(支持库,Android)将我的片段加载到标签中。但是,我看到标签托管在我的tabcontent上。但我希望我的tabcontent放在标签下面。这怎么可能?

我有搜索但找不到与此相关的任何内容。

3 个答案:

答案 0 :(得分:3)

设置边距或填充不会起作用,因为就像你在评论中所说的那样,标签的大小可能会有所不同,而且解决方案取决于TabHost的高度是否恒定。

我已在此处回答:FragmentTabHost content filling remaining space

您不需要在Tabhost中拥有片段(tabcontent)的容器,当您这样做时,您将使用相同的空间来处理片段和标签本身的内容。 / p>

只需将Tabhost放在垂直的LinearLayout中,然后将FrameLayout放在TabHost下面的外面,就像下面的示例一样:

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

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

        <TabWidget 
            android:id="@android:id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"/>
    </android.support.v4.app.FragmentTabHost>

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

</LinearLayout>

答案 1 :(得分:2)

您可以为包含片段的布局添加边距。我相信标签高度为56dp。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    <!--here-->
    android:layout_marginTop="56dp"

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:orientation="vertical">

   <!--your content-->
</LinearLayout>

答案 2 :(得分:0)

设置 <TabWidget android:background="@color/TabWidget" android:layout_width="match_parent" android:layout_height="56dp" /> 的高度(例如56dp)就可以了

{{1}}