RecyclerView滚动到底部 [英] RecyclerView scrolling to the bottom

查看:1365
本文介绍了RecyclerView滚动到底部的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个带有100多个物品的recyclerView.当用户打开包含recyclerView的活动时,应该可见recyclerView的底部,而没有任何滚动效果.适配器的最后一页应该直接显示为whatsapp的聊天页面.

I have a recyclerView with 100+ items. When user will open the activity containing the recyclerView, recyclerView's bottom should be visible without any scrolling effect. Directly last page of the adapter should be shown like whatsapp's chatting page.

我已经尝试通过以下方式进行操作,但是当用户打开活动时它会显示滚动效果.

I have tried by following way, but it is showing the scrolling effect when user opens the activity.

recyclerView.smoothScrollToPosition(list.size());

推荐答案

您可以通过添加以下行来滚动到回收站视图的最后一个位置

You can scroll to last position of recycler view by adding this line

recyclerView.scrollToPosition(YourArraylist.size()-1);

在设置适配器后添加此

这篇关于RecyclerView滚动到底部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆