码迷,mamicode.com
首页 > 移动开发 > 详细

Android Studio第三十一期 - 记录RecyclerView滚动位置并恢复

时间:2017-02-19 11:13:27      阅读:858      评论:0      收藏:0      [点我收藏+]

标签:android   private   public   记录   null   

    代码已经整理好,看下面~有一天你会用到的~不客气哈~技术分享

//监听RecyclerView滚动状态
mRecyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() {
    @Override
    public void onScrollStateChanged(RecyclerView recyclerView, int newState) {
        super.onScrollStateChanged(recyclerView, newState);
        if(recyclerView.getLayoutManager() != null) {
            getPositionAndOffset();
        }
    }
});

/**
 * 记录RecyclerView当前位置
 */
private void getPositionAndOffset() {
    LinearLayoutManager layoutManager = (LinearLayoutManager) mRecyclerView.getLayoutManager();
    //获取可视的第一个view
    View topView = layoutManager.getChildAt(0);
    if(topView != null) {
        //获取与该view的顶部的偏移量
        lastOffset = topView.getTop();
        //得到该View的数组位置
        lastPosition = layoutManager.getPosition(topView);
    }
}

/**
 * 让RecyclerView滚动到指定位置
 */
private void scrollToPosition() {
    if(mRecyclerView.getLayoutManager() != null && lastPosition >= 0) {
        ((LinearLayoutManager) mRecyclerView.getLayoutManager()).scrollToPositionWithOffset(lastPosition, lastOffset);
    }
}

    技术分享

本文出自 “梁肖技术中心” 博客,请务必保留此出处http://liangxiao.blog.51cto.com/3626612/1899155

Android Studio第三十一期 - 记录RecyclerView滚动位置并恢复

标签:android   private   public   记录   null   

原文地址:http://liangxiao.blog.51cto.com/3626612/1899155

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!