Recycler scroll to bottom is applied using smoothScrollToPosition() in a chat application. Its looks jumping from top to bottom whenever response occurs from server.
RecycleViewObject.smoothScrollToPosition(array.size());
How to resolve this issue?
try this
RecyclerView.scrollToPosition(ArrayList.size()-1);