在做这个功能时,使用scroll的任何一个方法,发现它每次都只滑到了一半。今天终于解决了,解决方法如下:

= (LinearLayoutManager)  recyclerView.getLayoutManager();
linearLayoutManager.setStackFromEnd(true);
recyclerView.setLayoutManager(linearLayoutManager);

关键点就是加上这一行代码:

linearLayoutManager.setStackFromEnd(true);

这个方法是让RecyclerView从底部开始依次显示Item , 如果你的Item数量太少 , 就会出现RecyclerView顶部空了很多空白出来 , 所以需要将RecyclerView的高度设置为 wrap_content。
这时滑动到底部就有效果了。

linearLayoutManager.scrollToPositionWithOffset(mAdapter.getItemCount() - 1, Integer.MIN_VALUE);

谢谢阅读。