35

我有以下布局

<android.support.v4.widget.SwipeRefreshLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

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

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >
            //some views here
        </LinearLayout>

        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >
        <TableLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:stretchColumns="*" >
        </TableLayout>

    </LinearLayout>

</android.support.v4.widget.SwipeRefreshLayout>

问题是当我向下滚动表格时,我无法再次向上滚动,因为正在触发滑动布局。仅当表格的第一个视图可见时,如何触发 swiperefresh?

4

4 回答 4

104

我发现如果你ScrollView用 a替换你android.support.v4.widget.NestedScrollView的滚动行为会像你期望的那样工作。

于 2016-12-12T15:30:03.193 回答
10

制作自己的 SwipeRefreshLayout 实现并以这种方式覆盖 canChildScrollUp:

    @Override
public boolean canChildScrollUp() {
    if (scrollView != null)
        return scrollView.canScrollVertically(-1);

    return false;
}

只需替换为 ScrollView 的任何子类。

于 2014-09-29T12:26:41.023 回答
6

如果你有这样的布局:

<SwipeRefreshLayout>
    <android.support.v4.widget.NestedScrollView
        android:id="@+id/your_scroll_view_id">
        <LinearLayout>
        ...
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>
</SwipeRefreshLayout>

您需要创建自己的类并以这种方式覆盖该函数:

class SwipeRefreshLayoutCustom extends SwipeRefreshLayout {
    public SwipeRefreshLayoutCustom(Context context, AttributeSet attributes) {
        super(context, attributes)
    }
    @override
    boolean canChildScrollUp() {
        return your_scroll_view_id.scrollY != 0
    }
}
于 2018-03-05T13:44:02.077 回答
-3

使用 NestedScrollView:

     app:layout_behavior="@string/appbar_scrolling_view_behavior"
于 2018-02-26T22:21:50.883 回答