gpt4 book ai didi

android - 向上滚动时折叠工具栏图像消失

转载 作者:搜寻专家 更新时间:2023-11-01 08:27:07 24 4
gpt4 key购买 nike

我正在尝试实现带有大标题图像的折叠工具栏。我希望图像开始时非常大(并且有效)而不是完全折叠(也有效)。问题是,当工具栏达到最小可折叠高度时,图像消失,逐渐变为应用程序的原色。我希望图像即使在折叠时也能保持可见。

此外,后退按钮与图片一起向上滚动,我希望它固定在原位。

Activity 的 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: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="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed">

<ImageView
android:id="@+id/imageViewToolbar"
android:minHeight="500dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed"
app:layout_collapseMode="parallax" />

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:title=""
android:layout_width="match_parent"
android:layout_height="300dp"
app:layout_scrollFlags="scroll|enterAlways"
/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/detail_content"/>

谢谢。

最佳答案

我修复了它:

我通过将 app:statusBarScrim="@android:color/transparent" 添加到 CollapsingToolbarLayout 使图像不会褪色为纯色,并通过添加 修复了向上滑动的后退按钮app:layout_collapseMode="pin" 到工具栏的布局。

关于android - 向上滚动时折叠工具栏图像消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43823915/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com