如何在CollapsingToolbarLayout折叠结束时隐藏ImageView?

时间:2015-10-12 23:20:28

标签: android material-design android-collapsingtoolbarlayout

我在CollapsingToolbarLayout中使用ImageView并且需要通过ImageView控制,在CollapsingToolbarLayout折叠结束时隐藏它并在ImageView上做一些,请任何想法都可以帮助我。 有这样的选择

app:layout_scrollFlags="scroll|exitUntilCollapsed"

但没有任何选项,例如" exitEndCollapsed"。

2 个答案:

答案 0 :(得分:14)

我花了近两天的时间试图让这个工作正常。我已经阅读了很多指南和其他人。现在我终于解决了!这些是我做的步骤:
首先,您需要将ImageView移到工具栏前面(仍然在CollapsingToolbarLayout内。接下来,您必须将app:contentScrim="?attr/colorPrimary"添加到巡视CollapsingToolbarLayout中(这样做)滚动结束时有很好的稀松布效果 最后,您必须在android:background="@android:color/transparent"中添加Toolbar 这就是全部......这种方式对我有用。希望它会对你有所帮助。

以下是我的activity_main.xml的一部分:

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

<android.support.design.widget.AppBarLayout
    android:id="@+id/appBar"
    android:layout_width="match_parent"
    android:layout_height="168dp">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsingToolbarLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:contentScrim="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

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

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="56dp"
            android:background="@android:color/transparent"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            app:layout_collapseMode="pin"
            app:layout_scrollFlags="scroll|exitUntilCollapsed|snap" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:paddingBottom="16dp"
            android:paddingStart="16dp"
            android:text="AppBar Title"
            android:textSize="25dp" />

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

<android.support.v4.widget.NestedScrollView
    android:id="@+id/scrollView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

答案 1 :(得分:-2)

在图片视图中添加,

 app:layout_collapseMode="parallax"
 app:layout_collapseParallaxMultiplier="0"