how to scroll to the bottom when open a recyclerview kotlni code example
Example: android recyclerview scroll to bottom
recyclerView.scrollToPosition(list.size - 1)
// this might be helpful
layoutManager.reverseLayout = true
recyclerView.scrollToPosition(list.size - 1)
// this might be helpful
layoutManager.reverseLayout = true