CollapsingToolbarLayout

CollapsingToolbarLayout

我在将设计支持库集成到我的应用程序时遇到问题。由于某些原因,工具栏会随CollapsingToolbarLayout一起折叠,并且不会像Chris Banes的Cheesesquare示例中那样固定在工具栏上。
https://github.com/chrisbanes/cheesesquare

我没有做任何与我的布局不同的事情。实际上,我用他代替了我的风格,而放弃了他的布局。我想知道是否使用工具栏而不是android.support.v7.widget.Toolbar导致了这种情况。

这是问题所在。

这是我的AppBar部分的XML。

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


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

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

            <ImageView
                android:id="@+id/backdrop"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fitsSystemWindows="true"
                app:layout_collapseMode="parallax" />

            <Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                app:layout_collapseMode="pin" />

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

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

    ...

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

最佳答案

您的直觉是正确的:CollapsingToolbarLayout确实使用Toolbar支持来依赖您-它使用它来设置CollapsingToolbarLayout的最小高度(还有许多其他功能)。您应该切换到使用Toolbar的支持版本,以确保CollapsingToolbarLayout的最佳体验。

关于android - (设计支持库)CollapsingToolbarLayout-工具栏未固定在折叠上,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30564588/

10-11 22:21