折叠CollapsingToolbarLayout中的ImageView,直到显示视图中的内容

时间:2017-07-23 22:35:35

标签: android imageview hide android-collapsingtoolbarlayout

我想折叠CollapsingToolbarLayout中的imageview,直到完全显示活动内的内容。此时,即使视图中没有任何内容,我的imageview也会完全隐藏。

所以这就是我想要实现的目标。

Before scrolling the view image1

After scrolling the view image2

图像没有完全隐藏它会给出折叠动画,直到内容完全显示。在我的情况下,图像完全隐藏。

这是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:layout_height="wrap_content"
    android:layout_width="match_parent">
    <android.support.design.widget.CollapsingToolbarLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_scrollFlags="scroll|enterAlwaysCollapsed"
        app:contentScrim="?attr/colorPrimary"
        >
        <ImageView
            android:id="@+id/expandedImage"
            android:layout_width="match_parent"
            android:layout_height="400dp"
            android:src="@drawable/p10_image"
            android:scaleType="centerCrop"
            app:layout_collapseMode="parallax"
            />

    </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"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:elevation="6dp"
    >
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:background="@color/colorPrimary"
        >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                >

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:layout_margin="5dp"
                    android:gravity="center_horizontal"
                    android:text="content......"
                    android:textColor="#434343"
                    android:textStyle="bold"
                    android:textSize="16sp"
                    />

            </LinearLayout>
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>

0 个答案:

没有答案