Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Shift recyclerview focus to last element in the list

I am using recyclerview to display messages in a chat window. However, when a new message is being edited, the recycler view focus should be on the last element. I expect there would be some way to shift the focus of a recyclerview to last element instead of first.

like image 704
div Avatar asked Sep 10 '25 15:09

div


1 Answers

use recyclerView.smoothScrollToPosition(position);

position is your index of last item inserted. This will move your the RecyclerView focus on the last element.

like image 129
Vipul Asri Avatar answered Sep 13 '25 15:09

Vipul Asri