android studio recyclerview scroll to bottom code example
Example 1: android recyclerview scroll to bottom
recyclerView.scrollToPosition(list.size - 1)
// this might be helpful
layoutManager.reverseLayout = true
Example 2: android recyclerview always scroll to bottom
recyclerView.scrollToPosition(getAdapter().getItemCount()-1);