如何从圆形环状水平RecyclerView获取子视图?

时间:2017-07-26 14:14:36

标签: android android-recyclerview

我需要在打开活动/片段时默认选择特定位置的列表。简单来说,我需要按位置获得Recycler子视图。

我尝试了以下方法,但它产生了空对象引用。也试过使用处理程序,但没有使用相同的问题。

View view = layoutManager.findViewByPosition(position)
recyclerView.findViewHolderforLayoutPosition(position)
reyclerView.findViewHolderforAdaperPosition(position)

1 个答案:

答案 0 :(得分:0)

在适配器中按位置显示所选视图。

然后使用便捷方法滚动到某个位置:

recyclerView.scrollToPosition(position);
recyclerView.smoothScrollToPosition(position);