Shift recyclerview focus to last element in the list
Use can add any of the two lines on your LinearLayoutManager object to scroll your recyclerview to the bottom ...
llm.setStackFromEnd(true);
OR
llm.setReverseLayout(true);
use recyclerView.smoothScrollToPosition(position);
position is your index of last item inserted. This will move your the RecyclerView
focus on the last element.