过度滚动ListView。拉动刷新

时间:2015-04-18 20:45:46

标签: android listview refresh pull

我在我的应用中实现了一次刷新。我认为这是对的:

swipeLayout = (SwipeRefreshLayout) v.findViewById(R.id.swipe_container);
        swipeLayout.setOnRefreshListener(this);
        swipeLayout.animate();
        swipeLayout.setColorSchemeResources(android.R.color.holo_blue_bright,
                android.R.color.holo_green_light,
                android.R.color.holo_orange_light,
                android.R.color.holo_red_light);

 public void onRefresh() {

        new Handler().postDelayed(new Runnable() {
            @Override
            public void run() {
                swipeLayout.setRefreshing(false);
            }
        }, 5000);
    }


    boolean canChildScrollUp()
    {
        return resultado.getFirstVisiblePosition()!=0;
    }

没有错误,我认为它工作正常。问题是我想在列表视图上进行过度滚动,而不是“刷卡刷新”,只是过度滚动,我不知道如何实现它。

0 个答案:

没有答案