1

Here some snippet of my code. when first time RecyclerView create I have to used recyclerView.scrollToPosition(chatDetailModels.size()-1); and its working but after add item in array list and notifyDataSetChanged for adapter its not goes to bottom automatically I have also try some other functions but its not work for me.

  chatDetailModels.add(chatDetailModel);
  adapter.notifyDataSetChanged();
  recyclerView.getLayoutManager().smoothScrollToPosition(recyclerView, null, adapter.getItemCount() - 1);
Kiran Maheshwari
  • 138
  • 1
  • 2
  • 9

1 Answers1

0

Use Latest Recyclerview Version. And then call-

 recyclerview.smoothscrolltoposition(arraylist.size()-1);

after you set adapter.

karanatwal.github.io
  • 3,613
  • 3
  • 25
  • 57