如何实现像plex android应用程序一样的CollapsingToolbar行为?

时间:2016-10-31 00:16:57

标签: android xml scroll android-animation android-transitions

我尽力教育自己在这里发帖,所以如果我违反任何我可以解决的规则,请告诉我。

所以这是我想要模仿的行为的GIF:

enter image description here

但这就是我所拥有的:

enter image description here

另外我预测布局很重要,所以我也会发布:

<android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

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

        <ImageView
            android:id="@+id/detail_backdrop_imageview"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scaleType="centerCrop"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            tools:src="@drawable/test_backdrop_w342" />

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

    </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:behavior_overlapTop="32dp"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

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

        <ImageView
            android:id="@+id/detail_poster_imageview"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            tools:src="@drawable/test_poster_w92" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="100dp"
            android:text="TESTING" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="100dp"
            android:text="TESTING" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="100dp"
            android:text="TESTING" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="100dp"
            android:text="TESTING" />
    </LinearLayout>
</android.support.v4.widget.NestedScrollView>

如果你已经读过这篇文章,我将无法感激。如果我发布任何帖子错误,请随时教我,或让我知道我可以做些什么来使问题更清楚。

谢谢!

0 个答案:

没有答案