本文介绍了如何以编程方式滚动水平 RecyclerView?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个 horizontal RecyclerView
和两个按钮(Next、Previous),如下图所示.
I have a horizontal RecyclerView
and two button (Next,Previous) as shown in the image below.
所以我需要使用这些按钮移动到下一个项目或位置,我知道名为 scrollTo
的方法,但我不知道它是如何工作的
so i need to move to the next item or position by use these buttons , i know about method called scrollTo
but i don't know how does it work
推荐答案
我找到了答案:
case R.id.next:
mRecyclerView.getLayoutManager().scrollToPosition(linearLayoutManager.findLastVisibleItemPosition() + 1);
break;
case R.id.pre:
mRecyclerView.getLayoutManager().scrollToPosition(linearLayoutManager.findFirstVisibleItemPosition() - 1);
break;
这篇关于如何以编程方式滚动水平 RecyclerView?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!