RecyclerView选中Item滚动到屏幕中间 / 指定位置,滚动切换的时间保持一致

类似京东的分类,点一个处在中间,滑动的时间相同

自定义LinearLayoutManager 

    public static class CenterLayoutManager extends LinearLayoutManager {
        static int lastPositon = 0;
        static int targetPosion = 0;

        public CenterLayoutManager(Context context, int orientation, boolean reverseLayout) {
            super(context, orientation, reverseLayout);
        }

        @Override
        public void smoothScrollToPosition(RecyclerView recyclerView, RecyclerView.State state, int position) {
            CenterSmoothScroller smoothScroller = new CenterSmoothScroller(recyclerView.getContext());
            smoothScroller.setTargetPosition(position);
            startSmoothScroll(smoothScroller);
        }

        public void smoothScrollToPosition(RecyclerView recyclerView, RecyclerView.State state, int lastpositon, int position) {
            this.lastPositon = lastpositon;
            this.targetPosion = position;
            smoothScrollToPosition(recyclerView, state, position);
        }

        public static class CenterSmoothScroller extends LinearSmoothScroller {

            private static float duration = 400f;//滚动到指定位置的时间间隔

            public CenterSmoothScroller(Context context) {
                super(context);
            }

            @Override
            public int calculateDtToFit(int viewStart, int viewEnd, int boxStart, int boxEnd, int snapPreference) {
                return (boxStart + (boxEnd - boxStart) / 2) - (viewStart + (viewEnd - viewStart) / 2);
            }

            @Override
            protected float calculateSpeedPerPixel(DisplayMetrics displayMetrics) {
                float newDuration = duration / (Math.abs(targetPosion - lastPositon));//重新计算相近两个位置的滚动间隔
                return newDuration / displayMetrics.densityDpi;
            }

            @Override
            protected int calculateTimeForScrolling(int dx) {
                return super.calculateTimeForScrolling(dx);
            }
        }
    }

给RecyclerView加上,横向、竖向自行设置

CenterLayoutManager   centerLayoutManager = new CenterLayoutManager(this, LinearLayoutManager.VERTICAL, false);
mRecyclerView.setLayoutManager(centerLayoutManager);

RecyclerView的适配器的点击事件中添加,事件仓促,适配器自己Code吧,lastPostion 是上一次选中的位置,默认值是第一次选中的位置

                centerLayoutManager.smoothScrollToPosition(mRecyclerView, new RecyclerView.State(), lastPostion, position);
                //记住当前选中的位置作为下一次选中的位置的上一次位置
                if (lastPostion != position)
                    lastPostion = position;

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值