使用GridLayoutManager(reyclerview)平滑滚动不起作用

时间:2018-09-23 10:30:49

标签: android android-recyclerview gridlayoutmanager

我有4个专栏的照片库。所以我将GridLayoutManager与RecyclerView一起使用。它运作完美。

但是,当我想在特定项目上滚动并获得平滑效果时,它将不起作用:

要滚动而没有平滑效果:(有效)

((GridLayoutManager) mRecyclerView).getLayoutManager()).
scrollToPositionWithOffset(position, 0);

要平滑滚动,请执行以下操作:(无效)

mRecyclerView.smoothScrollToPosition(position);

你能帮我吗?

0 个答案:

没有答案
相关问题