在CollapsingToolbarLayout中设置视差图像的初始高度
我有一个Android活动,它使用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高度设置为CollapsingToolbarLayout
或AppBarLayout
但没有任何帮助,它总是最大高度为160dp,我只能将其向上滚动(较小的图像),而不是向下,即使图像大得多, ImageView
设置为作为wrap_content
缩放。
下面是我想要达到的情况的一个画面,以防不清楚:
这是一个很好的方法来实现这一点,我不确定更好的方法,但很想听到它。 检出ControllableAppBarLayout
将该代码放置在您的项目中并替换:
android.support.design.widget.AppBarLayout
附:
ControllableAppBarLayout
将ControllableAppBarLayout的android:layout_height设置为您工具栏的最大尺寸,即您在“向下滚动”图片时所需的尺寸。
然后,在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中的数字,表示工具栏图像的最大高度与最初显示的高度之间的差异。 也就是说,如上所示,“初始状态”和“向下滚动”的区别。
这种黑客应该完成你想要的。
链接地址: http://www.djcxy.com/p/87337.html上一篇: Set initial height of parallax image in CollapsingToolbarLayout