标签: android android-recyclerview
我希望能够在按下向右和向左箭头时向右和向左滚动,除了在滑动时无关紧要的滚动
我知道这种方法可以滚动到回收站视图中的特定位置
linearLayoutManager.scrollToPositionWithOffset(2, 20);
但是如何在按下按钮时实现平滑的左右滚动
答案 0 :(得分:2)
使用smoothScrollBy而不是scrollToPosition -
recyclerView.smoothScrollBy(dx, dy);
希望它会有所帮助。