I am writing a chat like WhatsApp, I use RecyclerView
to display info from the server.
How can I make the RecyclerView
move down with the advent of new information? In advance to the blogger!
I am writing a chat like WhatsApp, I use RecyclerView
to display info from the server.
How can I make the RecyclerView
move down with the advent of new information? In advance to the blogger!
You can simply scroll to the last item in the list like this:
recyclerView.scrollToPosition(recyclerView.getAdapter.getItemCount()-1);
Source: https://ru.stackoverflow.com/questions/546293/
All Articles