我已经尝试了从stackoverflow上的问题的答案,但我仍然无法解决这个问题。在我的一个Recyclerview中,我可以在点击一个按钮后滚动到所需的位置。在不同的Recyclerview(它的构建类似于第一个),我无法滚动到所需的位置。
这是有效的recyclerview的代码:
LinearLayoutManager layoutManager = new LinearLayoutManager(getContext());
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
Button button = (Button) view.findViewById(R.id.button2);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
newFeedRecyclerView.smoothScrollToPosition(2);
}
});
FeedRecyclerAdapter adapter = new FeedRecyclerAdapter(view.getContext(), allRows);
newFeedRecyclerView.setHasFixedSize(true);
newFeedRecyclerView.setLayoutManager(layoutManager);
newFeedRecyclerView.addItemDecoration(new VerticalSpaceItemDecorator(30));
newFeedRecyclerView.setAdapter(adapter);
这是针对无效的Recyclerview:
allImageRecycleView.addItemDecoration(new VerticalSpaceItemDecorator(30));
allImageRecycleView.setNestedScrollingEnabled(false);
allImageRecycleView.setHasFixedSize(true);
LinearLayoutManager layoutManager = new >LinearLayoutManagerWithSmoothScroller(getContext());
Button button = (Button)view.findViewById(R.id.button3);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
allImageRecycleView.smoothScrollToPosition(2);
}
});
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
allImageRecycleView.setLayoutManager(layoutManager);
allImageRecycleView.setAdapter(allImageRecyclerAdapter);
非常感谢您阅读本文。
答案 0 :(得分:0)
试试这个
layoutManager.scrollToPosition(index);
答案 1 :(得分:0)
使用
layoutManager.scrollToPositionWithOffset(int position, int offset)
scrollToPositionWithOffset(int position,int offset)滚动到 指定的适配器位置与已解析布局的给定偏移量 启动。
src:https://developer.android.com/reference/android/support/v7/widget/LinearLayoutManager.html