為了將指定的 item 平滑的滑動至置頂凫碌。
- 簡單的直接置頂:
mLayoutManager.scrollToPositionWithOffset(position, 0);//沒有滑動嗜历,直接置頂
缺點是體驗不好,沒有滑動的過程。
- RecyclerView 的滑動方法
rv.scrollToPosition(index);//直接定位闻丑,沒有滑動的過程挠锥,不能置頂
rv.smoothScrollToPosition(position);//平滑的滑動众羡,不能置頂
rv.scrollBy(int x, int y);
scrollToPosition();smoothScrollToPosition()
將對應(yīng)的 item 滑動到屏幕內(nèi),當(dāng) item 變?yōu)榭梢姇r則停止滑動蓖租。
所以當(dāng)指定的 item 在當(dāng)前屏幕的下方時粱侣,滑動后目標 item 會出現(xiàn)屏幕的最底部;
當(dāng)指定 item 在屏幕可見時蓖宦,則完全沒有滑動齐婴。
很多時候這個方法是不符合我們預(yù)期的,有時候稠茂,我們希望能將指定的 item 平滑的滑動到當(dāng)前的屏幕頂端或中間柠偶。
這時候可以配合 scrollBy()
來做一個判斷:
private void setSelectPosition(int index) {
//當(dāng)前可見的第一項和最后一項
int firstItem = linearLayoutManager.findFirstVisibleItemPosition();
int lastItem = linearLayoutManager.findLastVisibleItemPosition();
if (index <= firstItem) {
//當(dāng)要置頂?shù)捻椩诋?dāng)前顯示的第一個項的前面時,直接調(diào)用沒有問題
rv.scrollToPosition(index);
} else if (index <= lastItem) {
//當(dāng)要置頂?shù)捻椧呀?jīng)在屏幕上顯示時睬关,計算需要滑動的距離
int top = rv.getChildAt(index - firstItem).getTop();
rv.scrollBy(0, top);
} else {
//當(dāng)指定的 item 在當(dāng)前顯示的最后一項的后面時
//這時候一次的滑動不足以將指定 item 放到頂端
rv.scrollToPosition(index);
//記錄當(dāng)前需要在RecyclerView滾動監(jiān)聽里面繼續(xù)第二次滾動
move = true;
}
}
//在第三種的情況中诱担,scrollToPosition() 結(jié)束后該方法被調(diào)用
class RecyclerViewListener extends RecyclerView.OnScrollListener{
@Override
public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
super.onScrolled(recyclerView, dx, dy);
//在這里進行第二次滾動
if (move ){
move = false;
int n = mIndex - mLinearLayoutManager.findFirstVisibleItemPosition();
if ( 0 <= n && n < mRecyclerView.getChildCount()){
//要移動的距離
int top = mRecyclerView.getChildAt(n).getTop();
mRecyclerView.scrollBy(0, top);
}
}
}
}
上面這個方面也是看到別人的實現(xiàn)的思路,雖然沒什么問題不過還是算是取巧的一種方法电爹,僅記錄蔫仙。
其實 Stack Overflow 上已經(jīng)有了更好的答案 :RecyclerView - How to smooth scroll to top of item on a certain position?
- 重寫 LinearLayoutManager
public class LinearLayoutManagerWithSmoothScroller extends LinearLayoutManager {
public LinearLayoutManagerWithSmoothScroller(Context context) {
super(context, VERTICAL, false);
}
public LinearLayoutManagerWithSmoothScroller(Context context, int orientation, boolean reverseLayout) {
super(context, orientation, reverseLayout);
}
//重點方法
@Override
public void smoothScrollToPosition(RecyclerView recyclerView, RecyclerView.State state,
int position) {
//也就是說重點在于重寫 SmoothScroller,而滑動的調(diào)用為 startSmoothScroll()
RecyclerView.SmoothScroller smoothScroller = new TopSnappedSmoothScroller(recyclerView.getContext());
smoothScroller.setTargetPosition(position);
startSmoothScroll(smoothScroller);
}
private class TopSnappedSmoothScroller extends LinearSmoothScroller {
public TopSnappedSmoothScroller(Context context) {
super(context);
}
@Override
public PointF computeScrollVectorForPosition(int targetPosition) {
return LinearLayoutManagerWithSmoothScroller.this
.computeScrollVectorForPosition(targetPosition);
}
@Override
protected int getVerticalSnapPreference() {
//將指定的 item 滑動至與屏幕的頂端對齊
return SNAP_TO_START;
}
}
}
//使用
recyclerView.smoothScrollToPosition(position);
仔細看可以發(fā)現(xiàn)我們也可以選擇不重寫整個 LinearLayoutManager,只要將 LinearSmoothScroller 的 getVerticalSnapPreference()
重寫也可以達到目的丐箩。
關(guān)于 getVerticalSnapPreference ()
的源碼與注釋:
/**
* When scrolling towards a child view, this method defines whether we should align the top
* or the bottom edge of the child with the parent RecyclerView.
*
* @return SNAP_TO_START, SNAP_TO_END or SNAP_TO_ANY; depending on the current target vector
* @see #SNAP_TO_START
* @see #SNAP_TO_END
* @see #SNAP_TO_ANY
*/
protected int getVerticalSnapPreference() {
return mTargetVector == null || mTargetVector.y == 0 ? SNAP_TO_ANY :
mTargetVector.y > 0 ? SNAP_TO_END : SNAP_TO_START;
}
返回的值決定了指定 item 的對齊方式摇邦,與頂部對齊 / 底部對齊。
所以最終代碼:
//初始化過程
mLayoutManager= new LinearLayoutManager(getActivity());
mSmoothScroller = new LinearSmoothScroller(getActivity()) {
@Override protected int getVerticalSnapPreference() {
return LinearSmoothScroller.SNAP_TO_START;
}
@Override
public PointF computeScrollVectorForPosition(int targetPosition) {
return mLayoutManager.computeScrollVectorForPosition(targetPosition);
}
};
mRvRetail.setLayoutManager(mLayoutManager);
//滑動
mSmoothScroller.setTargetPosition(position);
mLayoutManager.startSmoothScroll(mSmoothScroller);