TabLayout属于Framelayout

时间:2016-01-19 18:14:34

标签: android android-fragments androiddesignsupport

我有一个FrameLayout,里面包含一个TabLayout和一个ViewPager。显然,ViewPager加载了一个片段。现在的问题是,TabLayout在加载后会在片段内容之下,因此会消失。

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

            <android.support.design.widget.TabLayout
                android:id="@+id/sliding_tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>

            <android.support.v4.view.ViewPager
                android:id="@+id/viewpager"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"/>

        </FrameLayout>

我该如何解决?

编辑:

使用以下代码我能够使它工作但是现在滚动时标签总是卡在顶部...无论如何要修复它?

<LinearLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <android.support.design.widget.TabLayout
        android:id="@+id/sliding_tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="2"/>
</LinearLayout>

3 个答案:

答案 0 :(得分:2)

更改为垂直LinearLayout。然后,ViewPager将显示在TabLayout下方,而不是覆盖它。

答案 1 :(得分:1)

FrameLayout实际上将所有孩子叠加在一起。所以在你的情况下,这不是一个理想的行为。您应该考虑使用垂直LinearLayoutRelativeLayout

<LinearLayout
     android:id="@+id/content_frame"
     android:layout_width="match_parent"
     android:layout_height="0dp"
     android:layout_weight="1"
     android:orientation="vertical" >

        <android.support.design.widget.TabLayout
            android:id="@+id/sliding_tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"/>

</LinearLayout>

答案 2 :(得分:0)

您应该使用方向为“vertical”而不是FrameLayout的LinearLayout。当您想要包含单个子节点(例如片段)时,通常使用FrameLayout。