在 CollapsingToolbarLayout 中设置视差图像的初始高度

Set initial height of parallax image in CollapsingToolbarLayout

我有一个 Android activity,它在 CoordinatorLayout 中使用 CollapsingToolbarLayout 来实现滚动/折叠工具栏,并以图像作为背景/横幅。

图片是从网上加载的,我事先不知道它的大小。

我希望工具栏最初有一定的高度 (160dp),但如果图像大于此高度,我会允许用户进一步向下滚动以显示图像的其余部分。但是,这永远不会自动发生。初始状态为 160dp 高度,但用户应该能够向下滚动它以进一步增加图像的高度。

我似乎无法找到正确的高度/最小高度组合来实现这一点。这有可能吗?

这是我的布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:background="@color/toolbar_text">

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

        <android.support.design.widget.AppBarLayout
                android:id="@+id/appBarLayout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                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"
                    app:contentScrim="?attr/colorPrimary"
                    android:fitsSystemWindows="true">

                <!-- The background banner -->
                <ImageView
                        android:id="@+id/imgBanner"
                        android:layout_width="match_parent"
                        android:layout_height="160dp"
                        android:scaleType="centerCrop"
                        android:fitsSystemWindows="true"
                        app:layout_collapseMode="parallax"/>

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

            </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:layout_gravity="fill_vertical"
                android:clipToPadding="false"
                app:layout_behavior="@string/appbar_scrolling_view_behavior" >

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

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

</LinearLayout>

横幅图片的高度设置为 160dp,它控制工具栏最初的大小,但显然这样我不能将它扩展到 160dp 之外,因为那是视图的高度。

我尝试将 160dp 高度设置为 CollapsingToolbarLayoutAppBarLayout 但没有任何帮助,它的最大高度始终为 160dp,我只能向上滚动(较小的图像)而不是向下滚动,即使图像大得多并且 ImageView 设置为缩放为 wrap_content

这是我想要实现的效果图,以防不清楚:

这是实现此目的的一种 hacky 方法,我不确定是否有更好的方法,但很想听听。查看 ControllableAppBarLayout

将该代码放入您的项目并替换:

    android.support.design.widget.AppBarLayout

有:

   ControllableAppBarLayout

将 ControllableAppBarLayout 的 android:layout_height 设置为工具栏的最大尺寸,即您想要的 "scrolling further down" 图片尺寸。

然后,在 onCreate() 方法的代码中,您可以访问 ControllableAppBarLayout:

appBarLayout = (ControllableAppBarLayout) findViewById(R.id.appBarLayout);
appBarLayout.collapseToolbar();

appBarLayout.collapseToolbar() 将完全关闭工具栏。不过可以在ControllableAppBarLayout中修改这个方法:

private void performCollapsingWithoutAnimation() {
    if (mParent.get() != null) {
        mBehavior.onNestedPreScroll(mParent.get(), this, null, 0, getHeight(), new int[]{0, 0});
    }
}

具体来说,将 getHeight() 更改为 dp 中的数字,表示工具栏图像的最大高度与您最初要显示的高度之间的差异。也就是说,如上所示 "initial state" 和 "scrolling further down" 之间的区别。

这个黑客应该完成你想要的。