android-recyclerview scroll position change code example
Example 1: android recyclerview scroll to bottom
recyclerView.scrollToPosition(list.size - 1)
// this might be helpful
layoutManager.reverseLayout = true
Example 2: remove recyclerview scroll animation
android:overScrollMode="never"