一共有三种方法
第一种:坐标定位
mRecycleView.smoothScrollBy(distance,duration);
第二种:
mRecycleView.smoothScrollOffset()
第三种:推荐,索引定位,参数也可以通过adapter的getItemCount()-1定位到最底部
wrapRecyclerView.smoothScrollToPosition(0);
一共有三种方法
第一种:坐标定位
mRecycleView.smoothScrollBy(distance,duration);
第二种:
mRecycleView.smoothScrollOffset()
第三种:推荐,索引定位,参数也可以通过adapter的getItemCount()-1定位到最底部
wrapRecyclerView.smoothScrollToPosition(0);