协调器布局滚动标志,以便在到达顶部时自动显示

时间:2016-07-06 03:26:45

标签: android android-recyclerview android-coordinatorlayout

我有一个片段,它使用协调器布局来显示AppBarLayout和这样的回收器视图:

enter image description here

布局文件到目前为止:

<?xml version="1.0" encoding="utf-8"?>
<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:orientation="vertical">

    <android.support.design.widget.AppBarLayout
        android:layout_width="wrap_content"
        app:elevation="4dp"
        android:layout_height="wrap_content">

        <RelativeLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll|snap">

            <!-->Content removed<-->

        </RelativeLayout>

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

    <android.support.v7.widget.RecyclerView
        android:id="@+id/fragment_recyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

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

我遇到的问题是,如果我扔掉回收器视图以便列表一直滚动到顶部,AppBarLayout就不会显示,除非我特别再次拉下来。当回收者视图到达顶部时,是否有滚动标志使AppBarLayout关闭,就像它附加到回收器视图中的第一个项目一样?

1 个答案:

答案 0 :(得分:1)

不,转移惯性是known issue,一般都是嵌套滚动,包括平台API和CoordinatorLayout使用的。