可以用 RecyclerView 的layoutManager 调用下边的方法
mLayoutManager.scrollToPositionWithOffset(newActiveViewPosition+1,0)
滑动到的位置 和屏幕顶部 是一齐的 。
mRecyclerView.smoothScrollToPosition(position);
RecyclerView 这个方法调用之后 底部 和position 是对齐的。
可以用 RecyclerView 的layoutManager 调用下边的方法
mLayoutManager.scrollToPositionWithOffset(newActiveViewPosition+1,0)
滑动到的位置 和屏幕顶部 是一齐的 。
mRecyclerView.smoothScrollToPosition(position);
RecyclerView 这个方法调用之后 底部 和position 是对齐的。