美文网首页
Android SwipeRefreshLayout 、Recy

Android SwipeRefreshLayout 、Recy

作者: next_discover | 来源:发表于2016-08-06 16:58 被阅读238次

...

  recyclerView.setOnScrollListener(new RecyclerView.OnScrollListener(){
    @Override
    public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
        int topRowVerticalPosition = (recyclerView == null || recyclerView.getChildCount() == 0) ? 0 : recyclerView.getChildAt(0).getTop();
        swipeRefreshLayout.setEnabled(topRowVerticalPosition >= 0); }

    @Override
    public void onScrollStateChanged(RecyclerView recyclerView, int newState) {
        super.onScrollStateChanged(recyclerView, newState);
    }
});

...

大神总结:拿来学习
http://blog.csdn.net/jdsjlzx/article/details/50783991

相关文章

网友评论

      本文标题:Android SwipeRefreshLayout 、Recy

      本文链接:https://www.haomeiwen.com/subject/qpiksttx.html