12.PullToRefresh滑动到顶部

转载请注明出处 http://blog.csdn.net/qq_31715429/article/details/50973567
本文出自:猴菇先生的博客 

  PullToRefresh是一个很成熟的下拉刷新的开源控件,目前托管在GitHub上:https://github.com/chrisbanes/Android-PullToRefresh
  如果用ListView,让它滚动到顶部,一般是这样写的:

    if (!listView.isStackFromBottom()) {
        listView.setStackFromBottom(true);
    }
    listView.setStackFromBottom(false);
    但是,使用PullToRefreshListView以后,发现该对象竟然没有setStackFromBottom()方法!
翻翻它的源码,发现是这样的:
 public class PullToRefreshListView extends PullToRefreshAdapterViewBase<ListView>{...}

它并不是继承于ListView,所以也无法将这个对象cast到ListView。
但是,实际上PullToRefreshListView的主体确实是一个ListView,那么如何使用属于ListView的方法呢?

在百度、谷歌搜索了半天,终于在stackoverflow上找到了答案:Retaining scroll position on Pull To Refresh

PullToRefresh为了实现各种不同的View的下拉刷新,并不是简单的继承自ListView,而是采用了泛型。
实际上可以理解为在ListView(或者其他想要实现下拉刷新的View)外面包了一层ParentView

想要得到里面的ListView,有这样一个方法:
  listView.getRefreshableView();

因此,想要让它回到顶部,代码如下:

    ListView mlist = listView.getRefreshableView();
    if (!(mlist).isStackFromBottom()) {
        mlist.setStackFromBottom(true);
    }
    mlist.setStackFromBottom(false);

你可能感兴趣的:(Android)