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);