什么是等效的 listview.set在 Recycler View 的情况下选择

2022-09-01 05:12:42

在我们想要选择特定项目的情况下,我们使用该方法。如果出现 这种情况,我们该怎么做?ListViewsetSelectionRecyclerView


答案 1

用于在位置滚动项目RecyclerViewLayoutManager

recyclerView.getLayoutManager().scrollToPosition(position)


答案 2

检查

scrollToPositionWithOffset(int position, int offset)
scrollToPositionWithOffset(5,0);

从 LinearLayoutManager 滚动到指定的适配器位置,从解析的布局开始具有给定的偏移量。

将偏移量作为 0 传递(如果要在顶部进行选择)

这对我有用


推荐