To enable chat-style scrolling in a List View, we can use the following properties:
RecyclerView has a stackFromEnd attribute.
stackFromEnd
Or you can do it through code
mLayoutManager = new LinearLayoutManager(getActivity()); mLayoutManager.setReverseLayout(true); mLayoutManager.setStackFromEnd(true);