Android的设计支持TabLayout重叠内容

Android的设计支持TabLayout重叠内容

本文介绍了Android的设计支持TabLayout重叠内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用的设计支持库中引入的新TabLayout。我有code是这样的:

I am using the new TabLayout introduced in the design support library. I have the code like this:

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

    <android.support.design.widget.CoordinatorLayout
        android:id="@+id/lines_coordinator"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

            <android.support.design.widget.TabLayout
                android:id="@+id/tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:elevation="4dp"/>

        </android.support.design.widget.AppBarLayout>

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

    </android.support.design.widget.CoordinatorLayout>

</LinearLayout>

的问题是,使接片重叠片段中显示的内容的顶部。我该如何解决这个问题?我使用像Github上的例子TabLayout,所以我相信这是我的code无问题。我已经有一个工具栏,因为我用的是卡在导航抽屉里的片段,所以我从AppBarLayout删除它。

The problem is, that the tabs overlap the top of the content the fragments display. How can I fix this? I am using the TabLayout like in the examples on Github, so I believe there is no issue with my code. I already have a Toolbar because I use the tabs in a fragment in a navigation drawer, so I removed it from the AppBarLayout.

推荐答案

您需要添加应用程序:layout_behavior =@字符串/ appbar_scrolling_view_behavior ViewPager :这是什么样的变化观的高度,以低于 AppBarLayout 而不是完整的 match_parent 的高度。

You need to add app:layout_behavior="@string/appbar_scrolling_view_behavior" to your ViewPager: this is what changes the height of the View to be below the AppBarLayout rather than the full match_parent height.

这篇关于Android的设计支持TabLayout重叠内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-04 21:36