Android工具栏在可折叠的工具栏布局中重叠TabLayout

7

我正在尝试制作具有工具栏和下方的选项卡布局可折叠工具栏布局,但它们彼此重叠,并且我得到了this

enter image description here

我尝试了许多解决方案,但仍然存在这个问题。以下是我的 XML:

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

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

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fitsSystemWindows="true"
            app:contentScrim="@color/colorAppPrimary"
            app:expandedTitleMarginEnd="64dp"
            app:expandedTitleMarginStart="48dp"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <RelativeLayout
                android:id="@+id/image"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                android:background="@drawable/material_plane"
                android:fitsSystemWindows="true"
                android:scaleType="centerCrop"
                android:src="@drawable/header_png"
                app:layout_collapseMode="parallax"
                app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed">

                <ImageView
                    android:id="@+id/imageViewPhoto"
                    android:layout_width="80dp"
                    android:layout_height="80dp"
                    android:layout_centerInParent="true" />

                <TextView
                    android:id="@+id/textViewName"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="false"
                    android:layout_below="@+id/imageViewPhoto"
                    android:layout_centerHorizontal="true"
                    android:layout_marginTop="5dp"
                    android:text="TEXT"
                    android:textColor="@color/white"
                    android:textSize="16dp" />
            </RelativeLayout>

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:fitsSystemWindows="true"
                android:gravity="top"
                app:layout_collapseMode="pin"
                app:layout_scrollFlags="scroll|enterAlways">

                <TextView
                    android:id="@+id/toolbar_title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:textColor="@color/white"
                    android:textSize="20dp"
                    android:textStyle="bold" />
            </android.support.v7.widget.Toolbar>

            <android.support.design.widget.TabLayout
                android:id="@+id/tabs"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:layout_gravity="bottom"
                android:fitsSystemWindows="true"
                app:tabBackground="@android:color/transparent"
                app:tabMode="scrollable" />

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

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

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

</android.support.design.widget.CoordinatorLayout>
6个回答

5

尝试从你的RelativeLayout中删除这个:

app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed">

或者就让它们保持这样:
app:layout_scrollFlags="scroll|enterAlwaysCollapsed">

我想这可能是一个bug。


更新:查看此链接:http://blog.grafixartist.com/parallax-scrolling-tabs-design-support-library/

类似的问题也可以查看:如何在CollapsingToolbarLayout中使用带有工具栏的TabLayout?

<android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        app:contentScrim="@color/colorPrimaryDark"
        app:expandedTitleMarginEnd="64dp"
        app:expandedTitleMarginStart="48dp"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <RelativeLayout
            android:id="@+id/image"
            android:layout_width="match_parent"
            android:layout_height="250dp"
            android:background="@drawable/header"
            android:fitsSystemWindows="true"
            android:scaleType="centerCrop">

            <ImageView
                android:id="@+id/imageViewPhoto"
                android:layout_width="80dp"
                android:layout_height="80dp"
                android:layout_centerInParent="true"
                app:layout_collapseMode="parallax" />

            <TextView
                android:id="@+id/textViewName"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="false"
                android:layout_below="@+id/imageViewPhoto"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="5dp"
                android:text="TEXT"
                android:textSize="16dp" />

        </RelativeLayout>

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:fitsSystemWindows="true"
            android:gravity="top"
            app:layout_collapseMode="pin"
            app:layout_scrollFlags="scroll|enterAlways">

            <TextView
                android:id="@+id/toolbar_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:textSize="20dp"
                android:textStyle="bold" />
        </android.support.v7.widget.Toolbar>

        <android.support.design.widget.TabLayout
            android:id="@+id/htab_tabs"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:layout_gravity="bottom"
            app:tabIndicatorColor="@android:color/white" />

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

我尝试过这个,但是我的CollapsingToolbarLayout变高了,我无法把TabLayout放进去。(我需要透明的TabLayout) - Roman Svyatnenko
你想要类似这个例子的东西吗?:https://github.com/TheLittleNaruto/SupportDesignExample 我刚刚更新了答案。 - ʍѳђઽ૯ท
所以,答案是正确的,你应该将TabLayout放在CollapsingToolbarLayout下面。如果你想要它透明,你可以查看这个链接:https://dev59.com/0lwY5IYBdhLWcg3wpJL_ 或者使用 android:background="@android:color/transparent" 这是另一个问题。 - ʍѳђઽ૯ท
这就是为什么我说你需要将它放在 CollapsingToolbarLayout 下面,检查一下这个布局:https://github.com/TheLittleNaruto/SupportDesignExample/blob/master/app/src/main/res/layout/app_container_view.xml - ʍѳђઽ૯ท
让我给你展示一下。屏幕截图。红色箭头显示了TabLayout的位置,绿色箭头显示了我想要定位的位置。 - Roman Svyatnenko
显示剩余6条评论

2

我也遇到了类似的问题,我尝试从CoordinatorLayout中删除android:fitsSystemWindows="true"。结果有效。


2
我找到了一种解决方法,只需在工具栏布局中添加这一行即可。
android:layout_marginBottom="48dp"

0

像这样编辑你的XML:

 <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:layout_gravity="bottom"
            android:fitsSystemWindows="true"
            android:marginTop="?attr/actionBarSize"
            app:tabBackground="@android:color/transparent"
            app:tabMode="scrollable"/>

如果不起作用,请添加注释


0

你必须将TabLayout放置在CollapsingToolbarLayout下方,这样它才能正常工作。你可以查看下面的代码:

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

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginBottom="@dimen/_32sdp"
        app:expandedTitleMarginEnd="@dimen/_64sdp"
        app:expandedTitleMarginStart="@dimen/_48sdp"
        app:expandedTitleTextAppearance="@style/TextAppearance.AppCompat.Large"
        app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed">

        <!--  Your View that you want to hide on animation -->
        <android.support.v4.view.ViewPager
            android:id="@+id/pager"
            android:layout_width="match_parent"
            android:layout_height="@dimen/_250sdp"
            android:fitsSystemWindows="true"
            android:scaleType="centerCrop"
            app:layout_collapseMode="parallax" />

        <!-- Your toolbar should always below your View otherwise it won't be visible  -->
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolBar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"
            app:title="title text"
            app:titleTextColor="@color/white" />

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

    <!--your tablayout should be here which will come below the toolbar-->
    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="@dimen/_50sdp"
        android:layout_below="@+id/toolbar"
        android:layout_gravity="bottom"
        android:background="@color/theme_color"
        android:overScrollMode="never"
        android:scrollbars="horizontal"
        android:visibility="visible"
        app:layout_anchor="@id/appbar"
        app:layout_anchorGravity="bottom"
        app:tabIndicatorColor="@color/orrange"
        app:tabMode="scrollable" />

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


<android.support.v4.widget.NestedScrollView
    android:id="@+id/scrollView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <include layout="@layout/content" />

</android.support.v4.widget.NestedScrollView>

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

祝一切顺利。


-1

请确保您使用以下结构:

<android.support.design.widget.CoordinatorLayout> 
<android.support.design.widget.AppBarLayout>
<android.support.design.widget.CollapsingToolbarLayout>
<ImageView />
<android.support.v7.widget.Toolbar />
<android.support.design.widget.TabLayout />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>

你需要确保只有工具栏包含以下内容:

android:layout_marginBottom="48dp"
app:layout_collapseMode="pin"

<android.support.v7.widget.Toolbar
      android:id="@+id/toolbar"
      android:layout_width="match_parent"
      android:layout_height="?attr/actionBarSize"
      android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
      app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
      android:layout_gravity="top"
      android:layout_marginBottom="48dp"
      app:layout_collapseMode="pin"
      >

而且 CollapsingToolbarLayout 必须包含

app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"
app:titleEnabled="false">

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接