IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android RecyclerView滚动到指定位置并且置顶方案 -> 正文阅读

[移动开发]Android RecyclerView滚动到指定位置并且置顶方案


之前相关项目一直有用到RecyclerView,其中很多地方都需要列表滚动到某个位置,即RecyclerView滚动到指定位置,所以我们今天来总结下实现的方案。

在实现方案之前先了解下RecyclerView和滑动有关的几个方法:
  • scrollTo(int x, int y)和scrollBy(int x, int y),前者无法实现滚动,里面是空实现;后者控制具体的滚动距离。
  • scrollToPosition(int position),可以滚动到指定条目,但是当指定条目显示在屏幕中就不会滚动的也不能控制滚动的具体位置,实际上调用的是LayoutManager的scrollToPosition(int position)。
  • smoothMoveToPosition(int position)效果同scrollToPosition(int position),实际上调用的是LayoutManager的smoothScrollToPosition(RecyclerView recyclerView, State state, int position)。
  • LinearLayoutManager的scrollToPositionWithOffset(int position, int offset)滚动到指定条目并且可以设置相对偏移量(指定条目显示在屏幕中也会滚动到顶部)。
相关方法具体源码的实现:
  • scrollTo(int x, int y)与scrollBy(int x, int y)

    @Override
    public void scrollTo(int x, int y) {
        Log.w(TAG, "RecyclerView does not support scrolling to an absolute position. "
                + "Use scrollToPosition instead");
    }

    @Override
    public void scrollBy(int x, int y) {
        if (mLayout == null) {
            Log.e(TAG, "Cannot scroll without a LayoutManager set. "
                    + "Call setLayoutManager with a non-null argument.");
            return;
        }
        if (mLayoutSuppressed) {
            return;
        }
        final boolean canScrollHorizontal = mLayout.canScrollHorizontally();
        final boolean canScrollVertical = mLayout.canScrollVertically();
        if (canScrollHorizontal || canScrollVertical) {
            scrollByInternal(canScrollHorizontal ? x : 0, canScrollVertical ? y : 0, null);
        }
    }
  • scrollToPosition(int position)

    /**
     * Convenience method to scroll to a certain position.
     *
     * RecyclerView does not implement scrolling logic, rather forwards the call to
     * {@link RecyclerView.LayoutManager#scrollToPosition(int)}
     * @param position Scroll to this adapter position
     * @see RecyclerView.LayoutManager#scrollToPosition(int)
     */
    public void scrollToPosition(int position) {
        if (mLayoutSuppressed) {
            return;
        }
        stopScroll();
        if (mLayout == null) {
            Log.e(TAG, "Cannot scroll to position a LayoutManager set. "
                    + "Call setLayoutManager with a non-null argument.");
            return;
        }
        mLayout.scrollToPosition(position);
        awakenScrollBars();
    }
可以看到最后调用了mLayout.scrollToPosition(position)。
  • smoothMoveToPosition(int position)
    /**
     * Starts a smooth scroll to an adapter position.
     * <p>
     * To support smooth scrolling, you must override
     * {@link LayoutManager#smoothScrollToPosition(RecyclerView, State, int)} and create a
     * {@link SmoothScroller}.
     * <p>
     * {@link LayoutManager} is responsible for creating the actual scroll action. If you want to
     * provide a custom smooth scroll logic, override
     * {@link LayoutManager#smoothScrollToPosition(RecyclerView, State, int)} in your
     * LayoutManager.
     *
     * @param position The adapter position to scroll to
     * @see LayoutManager#smoothScrollToPosition(RecyclerView, State, int)
     */
    public void smoothScrollToPosition(int position) {
        if (mLayoutSuppressed) {
            return;
        }
        if (mLayout == null) {
            Log.e(TAG, "Cannot smooth scroll without a LayoutManager set. "
                    + "Call setLayoutManager with a non-null argument.");
            return;
        }
        mLayout.smoothScrollToPosition(this, mState, position);
    }
可以看到最后调用了 mLayout.smoothScrollToPosition(this, mState, position)。
  • scrollToPositionWithOffset(int position, int offset)
 /**
     * Scroll to the specified adapter position with the given offset from resolved layout
     * start. Resolved layout start depends on {@link #getReverseLayout()},
     * {@link ViewCompat#getLayoutDirection(android.view.View)} and {@link #getStackFromEnd()}.
     * <p>
     * For example, if layout is {@link #VERTICAL} and {@link #getStackFromEnd()} is true, calling
     * <code>scrollToPositionWithOffset(10, 20)</code> will layout such that
     * <code>item[10]</code>'s bottom is 20 pixels above the RecyclerView's bottom.
     * <p>
     * Note that scroll position change will not be reflected until the next layout call.
     * <p>
     * If you are just trying to make a position visible, use {@link #scrollToPosition(int)}.
     *
     * @param position Index (starting at 0) of the reference item.
     * @param offset   The distance (in pixels) between the start edge of the item view and
     *                 start edge of the RecyclerView.
     * @see #setReverseLayout(boolean)
     * @see #scrollToPosition(int)
     */
    public void scrollToPositionWithOffset(int position, int offset) {
        mPendingScrollPosition = position;
        mPendingScrollPositionOffset = offset;
        if (mPendingSavedState != null) {
            mPendingSavedState.invalidateAnchor();
        }
        requestLayout();
    }
我们了解了RecyclerView和LinearLayoutManager相关滑动方法的意义,接下来就可以实现滚动指定位置功能(置顶或指定条目处于可见位置),如图:

图一
图二
图一屏幕展示了7个item,而我们需要将item5置顶,如图二,这时候用scrollToPosition(int position)方法是没有效果的,接下来我们总结出一些方案实现这个逻辑(至于是否平滑滚动我们先不讨论,留在最后讲):
  1. 最简单的方案就是使用LinearLayoutManager的scrollToPositionWithOffset(int position, int offset)方法,直接一步到胃,不用像scrollToPosition(int position)考虑当前条目处于屏幕的情况。

 findView(R.id.btn_to_position1, new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                mManager.scrollToPositionWithOffset(5,0);
            }
        });
        
  1. 用scrollBy(int x, int y)方法实现,如果我们知道item5距离顶部的距离就可以使用此方法滑动这段距离,从而实现置顶,但是这个方法是会滚动累加的,即下次将item6置顶时,只需将距离加一个item的高度,酌情处理即可。

        findView(R.id.btn_to_position1, new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                int dy = (int) (mRvTestScroll.getY() + mRvTestScroll.getChildAt(5).getY());
                mRvTestScroll.scrollTo(0, dy);
            }
        });
        
  1. 用RecyclerView或LinearLayoutManager的smoothMoveToPosition(int position)方法实现,前面我们说到当指定条目在屏幕中,其效果和scrollToPosition(int position)效果是一样的,但是我们可以用SmoothScroller来实现这个置顶。

        LinearSmoothScroller smoothScroller = new LinearSmoothScroller(getContext()) {
            @Override
            protected int getHorizontalSnapPreference() {
                return LinearSmoothScroller.SNAP_TO_START;
            }

            @Override
            protected int getVerticalSnapPreference() {
                return LinearSmoothScroller.SNAP_TO_START;
            }
        };

        findView(R.id.btn_to_position1, new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                smoothScroller.setTargetPosition(5);
                mManager.startSmoothScroll(smoothScroller);
            }
        });
        
其中LinearSmoothScroller.SNAP_TO_START就是我们的置顶操作(不管该item是否处于屏幕可见状态),它还有SNAP_TO_END和SNAP_TO_ANY,可以去看下具体的意义,然后就是将SmoothScroller设置给LinearLayoutManager

       smoothScroller.setTargetPosition(5);
       mManager.startSmoothScroll(smoothScroller);
       
这里我们也可以通过重写LinearLayoutManager里的smoothScrollToPosition(RecyclerView recyclerView, RecyclerView.State state, final int position)方法实现,如下:

public class SmoothScrollLayoutManager extends LinearLayoutManager {

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

    @Override
    public void smoothScrollToPosition(RecyclerView recyclerView,
                                       RecyclerView.State state, final int position) {

        LinearSmoothScroller smoothScroller =
                new LinearSmoothScroller(recyclerView.getContext()) {
                    // 返回:滑过1px时经历的时间(ms)。
                    @Override
                    protected float calculateSpeedPerPixel(DisplayMetrics displayMetrics) {
                        return 150f / displayMetrics.densityDpi;
                    }

                    @Override
                    protected int getHorizontalSnapPreference() {
                        return LinearSmoothScroller.SNAP_TO_START;
                    }

                    @Override
                    protected int getVerticalSnapPreference() {
                        return LinearSmoothScroller.SNAP_TO_START;
                    }
                };

        smoothScroller.setTargetPosition(position);
        startSmoothScroll(smoothScroller);
    }

}

调用方式可直接使用RecyclerView的smoothScrollToPosition(int position)方法,如下:

        findView(R.id.btn_to_position1, new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                mRvTestScroll.smoothScrollToPosition(5);
            }
        });

这两个写法本质上也是一样,至于为什么,前面也说得很清楚了,这里就不再提了。到这里细心的同学肯定也看到LinearSmoothScroller里多了个calculateSpeedPerPixel(DisplayMetrics displayMetrics)方法,是的,这个玩意就是计算滚动速度的,如果我们需要平滑滚动的效果,可以实现这个方法控制我们想要的置顶效果。

本次文章主要介绍如何实现RecyclerView滚动到指定位置并且置顶方案,讲了RecyclerView和LinearLayoutManager几个重要方法,透过现象看本质。如有错误,欢迎指正;若有其它方法也可分享出来,感激不尽!
  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-09-03 12:02:02  更:2021-09-03 12:02:17 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/31 5:42:00-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码