RecyclerView项目在快速滚动时落后于AppBar

时间:2017-09-03 19:18:05

标签: android layout android-coordinatorlayout

列表滚动和CollapsingToolbarLayout出现问题。我想尝试在应用栏布局中使用个人资料信息,以及底部的一些列表数据。当我慢慢滚动它完全崩溃,但如果我将滚动快速列表项将在AppBar后面崩溃之前。任何想法如何预防呢?我希望我的appbar像列表标题一样。

视频:https://drive.google.com/open?id=0B3MjLbKudbSdLTFKNHZFa2I5UGc

布局文件:

<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true">

        <android.support.design.widget.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:layout_scrollFlags="scroll|enterAlwaysCollapsed">

            <FrameLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

            </FrameLayout>

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

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

    <RecyclerView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:overScrollMode="never"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

</android.support.design.widget.CoordinatorLayout>

谢谢!

0 个答案:

没有答案