如何修复 AppBarlayout 和 TabLayout 之间的差距

How to fix a gap between AppBarlayout and TabLayout

我正在尝试将 AppBarLayout 与 Toolbar、TabLayout 组件和 Viewpager 一起使用,但我在工具栏和 tablayout 之间发现了一个黑色间隙,我不确定为什么。我看过这里的一些示例,但它们不起作用。

我放了一张我的问题的图片。

XML

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

    <android.support.design.widget.AppBarLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/home_appbarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:elevation="0dp">
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?android:attr/actionBarSize"
            android:background="@color/white"
            app:contentInsetStart="@dimen/margin_8"
            app:contentInsetStartWithNavigation="@dimen/margin_8"
            app:layout_collapseMode="pin"
            app:paddingStart="0dp"
            app:theme="@style/ThemeOverlay.AppCompat.ActionBar"
            app:titleMarginStart="@dimen/margin_8">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="toolbar"/>
        </android.support.v7.widget.Toolbar>
    </android.support.design.widget.AppBarLayout>

        <android.support.design.widget.CoordinatorLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/rosa_apelucy">
            <android.support.design.widget.TabLayout
                android:id="@+id/tab_layout"
                app:tabMode="fixed"
                android:layout_width="match_parent"
                android:layout_height="?android:attr/actionBarSize"
                android:background="@color/transparent"
                android:elevation="6dp"
                app:tabTextColor="@color/grey"
                app:tabSelectedTextColor="@color/pink"
                app:tabIndicatorColor="@color/pink"/>

            <android.support.v4.view.ViewPager
                android:id="@+id/pager"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@color/white"/>
        </android.support.design.widget.CoordinatorLayout>
    </LinearLayout>
</RelativeLayout>

更新问题

<android.support.design.widget.CoordinatorLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/blanco">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/home_appbarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:elevation="0dp">
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?android:attr/actionBarSize"
            app:contentInsetStart="@dimen/margin_8"
            app:contentInsetStartWithNavigation="@dimen/margin_8"
            app:layout_collapseMode="pin"
            app:paddingStart="0dp"
            app:theme="@style/ThemeOverlay.AppCompat.ActionBar"
            app:titleMarginStart="@dimen/margin_8">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="toolbar"/>
        </android.support.v7.widget.Toolbar>
        <android.support.design.widget.TabLayout
            android:id="@+id/tab_layout"
            app:tabMode="fixed"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/transparent"
            android:elevation="6dp"
            android:minHeight="?android:attr/actionBarSize"
            app:tabTextColor="@color/gris_oscuro"
            app:tabSelectedTextColor="@color/rosa_apelucy"
            app:tabIndicatorColor="@color/rosa_apelucy"
            android:layout_marginTop="@dimen/margin_25"/>
    </android.support.design.widget.AppBarLayout>

        <android.support.v4.view.ViewPager
            android:id="@+id/pager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>

只需删除

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="25dp"
        android:background="@color/black">
</RelativeLayout>

在我看来,这似乎不是一个好的实践设计。您在其中使用了 CoordinatorLayoutTabLayout 以及更多问题。

相反,使用 CoordinatorLayout 作为根布局,在 AppBarLayout 之后作为子布局,然后在 AppBarLayout.[=23 中使用 ToolbarTabLayout =]

因此,结构将是:

<CoordinatorLayout
  <AppBarLayout
   <Toolbar/>
    <TabLayout/> 
  </AppBarLayout>
   <ViewPager/>
<CoordinatorLayout/>

之后,像这样在 CoordinatorLayout 中使用 ViewPager 并添加以下代码行:

<android.support.v4.view.ViewPager
   android:id="@+id/pager"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:background="@color/white"
   app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

更新:支持库:

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/home_appbarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:elevation="0dp">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?android:attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:theme="@style/ThemeOverlay.AppCompat.ActionBar">

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="toolbar" />
        </android.support.v7.widget.Toolbar>

        <android.support.design.widget.TabLayout
            android:id="@+id/tab_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:elevation="6dp"
            android:minHeight="?android:attr/actionBarSize"
            app:tabMode="fixed" />
    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>

工作布局 (AndroidX)

<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.google.android.material.appbar.AppBarLayout
        android:id="@+id/home_appbarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:elevation="0dp">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?android:attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:theme="@style/ThemeOverlay.AppCompat.ActionBar">

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="toolbar" />
        </androidx.appcompat.widget.Toolbar>

        <com.google.android.material.tabs.TabLayout
            android:id="@+id/tab_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:elevation="6dp"
            android:minHeight="?android:attr/actionBarSize"
            app:tabMode="fixed" />
    </com.google.android.material.appbar.AppBarLayout>

    <androidx.viewpager.widget.ViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>