工具栏的重力(或定位)在CollapsingToolbarLayout中无法正常工作

时间:2016-09-04 18:16:02

标签: android android-layout android-toolbar android-collapsingtoolbarlayout

我有一个工具栏 TablLayout 的布局,在 CollapsingToolbarLayout 的帮助下,下面看到一些很好的折叠效果:

第一张图片没问题。这是我想要的行为。

enter image description here

但是折叠状态的工具栏位于错误的位置:

enter image description here

正如您所看到的,工具栏低于其默认位置,无论我将它的重力设置为顶部。

以下是完整版面:

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar_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="215dp"
        app:expandedTitleMarginBottom="56dp"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/big_header"
            android:fitsSystemWindows="true"
            android:scaleType="centerInside"
            app:layout_collapseMode="parallax" />


        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="104dp"
            android:gravity="top"
            android:minHeight="?attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:titleMarginTop="13dp"
            />


        <android.support.design.widget.TabLayout
            android:id="@+id/sliding_tabs"
            android:layout_width="match_parent"
            style="@style/CustomTabLayout"
            android:layout_height="?attr/actionBarSize"
            android:layout_gravity="bottom" />


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

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


<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

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

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

我想将工具栏放在非折叠状态下“后退”按钮旁边的位置。如果可以,请帮忙。

2 个答案:

答案 0 :(得分:2)

这也是我所面临的一个已知问题。你需要“破解”一点 如果您不需要将标题设置为从大到小的动画,只需添加collapsingToolbar.titleEnabled = false,然后使用工具栏标题。
如果你想让你的标题在折叠工具栏中从大到小动画,你可以像这样破解它:
添加appBarLayout OffsetChanged侦听器并输入以下代码:

if (Math.Abs(e.verticalOffset) >= appBarLayout.totalScrollRange - 35) //Play with the number, and you should probably use dp instead of a hardcoded pixel number.
{
    collapsingToolbar.titleEnabled = false;
    SupportActionBar.title = "YourTitle";
}
else
{
    collapsingToolbar.titleEnabled = true;
    SupportActionBar.title = "";
}

它在两个标题之间翻转......

答案 1 :(得分:0)

我发现了一个更简单的解决方案,没有任何黑客攻击和纯xml:

  • expandedTitleMarginBottom中使用CollapsingToolbarLayout以避免展开的标题重叠TabLayout
  • layout_height设置为TabLayout作为常量值
  • layout_marginBottom添加到Toolbar,其值与TabLayout layout_height
  • 相同
<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.design.widget.CollapsingToolbarLayout
        android:layout_width="match_parent"
        android:layout_height="215dp"
        app:expandedTitleMarginBottom="78dp"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/big_header"
            app:layout_collapseMode="parallax" />

        <android.support.v7.widget.Toolbar
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="?attr/actionBarSize"
            app:layout_collapseMode="pin" />

        <android.support.design.widget.TabLayout
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:layout_gravity="bottom" />

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