Search code examples
androidandroid-recyclerviewchatandroid-scrollview

Recycler smooth scrolling occurs in every response from web


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?


Solution

  • try this

    RecyclerView.scrollToPosition(ArrayList.size()-1);