使用SwipeRefreshLayout从底部滚动到顶部不起作用

时间:2018-01-03 02:39:01

标签: java android swiperefreshlayout

我已实施SwipeRefreshLayout,基本上工作正常。 https://developer.android.com/training/swipe/add-swipe-interface.html

当您转到列表底部并尝试滚动到顶部SwipeRefreshLayout刷新时,我将遇到问题。

这不是我需要的。我只需滚动到列表的顶部,而不是刷新ListView。

我的意思是应该根据我们的立场刷新一些条件。对?因为当我们位于ListView的顶部时,期望的行为是允许刷新。

请帮忙。

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

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity"
    android:orientation="vertical"
    >

    <SearchView
        android:id="@+id/editSearch"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:iconifiedByDefault="false"
        android:queryHint="Input the number"
        />
<ListView
    android:paddingTop="5dp"
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"   />

</LinearLayout>

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

代码

@Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

        View view = inflater.inflate(R.layout.fragment_fragment_two, container, false);

        swiperefresh = (SwipeRefreshLayout) view.findViewById(R.id.swiperefresh);
        swiperefresh.setColorScheme(R.color.colorPrimary, R.color.colorAccent, R.color.colorPrimaryDark, R.color.colorPrimary);
        swiperefresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {

            @Override
            public void onRefresh() {
                swiperefresh.setRefreshing(true);
                Log.d("Swipe", "Refreshing Number");                 
                // Get data from WebAPI or database cache
            }
        });

        return view;
    }

2 个答案:

答案 0 :(得分:2)

嗯......最后我在这里找到了解决方案Scroll up does not work with SwipeRefreshLayout in Listview

所以我的布局不会改变,但代码是。

我们必须做以下

  1. 像公开一样实施AbsListView.OnScrollListener class FragmentTwo extends ListFragment implements SearchView.OnQueryTextListener, AbsListView.OnScrollListener

  2. 添加已实现接口AbsListView.OnScrollListener的两种方法 喜欢这里

  3. @Override
    public void onScrollStateChanged(AbsListView view, int scrollState) {
    }
    
    @Override
    public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
    
                swiperefresh.setEnabled(firstVisibleItem == 0);
    }
    

    这里的关键是
    swiperefresh.setEnabled(firstVisibleItem == 0);

    implements OnScrollListener inside listFragment

答案 1 :(得分:1)

这个库允许您在上拉和下拉之间进行选择:

https://github.com/chrisbanes/Android-PullToRefresh

拉起来刷新 默认情况下,此库设置为“Pull Down to Refresh”,但如果要允许“Pull Up Up to Refresh”,则可以执行此操作。您甚至可以设置视图以使用“全部”设置启用“上拉”和“下拉”。有关如何设置此内容的详细信息,请参阅“自定义”页面。

我认为SwipeRefreshLayout不允许这样做。