当用户位于顶部并向下滚动时,关闭对话框

时间:2016-02-19 15:27:41

标签: android listview

当用户位于布局顶部并向下滚动时,我想关闭对话框。到目前为止,这是我的代码:

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:id="@+id/coordinatorLayout"
    android:layout_height="match_parent"
    android:background="@color/White">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBarLayout"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@color/White">

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

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

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:layout_weight="0.99"
                    android:gravity="center"
                    android:text="@string/hello"
                    android:textColor="?attr/colorPrimary"
                    android:textSize="25sp"
                    app:layout_collapseMode="pin" />

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:layout_gravity="bottom"
                    android:layout_weight="0.01"
                    android:background="?attr/colorPrimary"
                    app:layout_collapseMode="pin" />
            </LinearLayout>

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

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

    <ListView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/listViewDialog"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/White"
        android:divider="@null"
        android:nestedScrollingEnabled="true"
        android:padding="16dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

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

我在listview上尝试了许多类似滚动侦听器的内容,但这仅在用户滚动到项目0时才会检测到。但是当用户位于完整布局的顶部时,我想忽略该对话框,因为上面有一个textview列表视图..

1 个答案:

答案 0 :(得分:0)

您可以将RecyclerView与LayoutManager一起使用,而不是使用ListView。此LayoutManager具有一个名为findFirstCompletelyVisibleItemPosition()的函数。这将返回RecyclerView中第一个完全可见的项目。因此,如果它位于列表的顶部,则返回0。在ScrolListener中添加它并设置:)