I am creating the chat application and using the RecyclerView.
It is stack from bottom.
When new messages are coming. then we need to manually scroll to that position.
It not automatically changing the position like WhatsApp does when new messages received.
Earlier i am using ListView in which its working properly.
You can use RecyclerView.scrollToPosition()
function. Something like mRecyclerView.scrollToLastPosition(mAdapter.getCount()-1)
Try this,
recyclerView.scrollToPosition(messages.size()-1);
or
recyclerView.setStackFromEnd(true)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With