之前相关项目一直有用到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)
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)
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)
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)方法是没有效果的,接下来我们总结出一些方案实现这个逻辑(至于是否平滑滚动我们先不讨论,留在最后讲):
- 最简单的方案就是使用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);
}
});
- 用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);
}
});
- 用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()) {
@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几个重要方法,透过现象看本质。如有错误,欢迎指正;若有其它方法也可分享出来,感激不尽!
|