recyclerView.scrollToPosition(0);
int positionToScroll = 10; recyclerView.scrollToPosition(positionToScroll);
int lastPosition = ((LinearLayoutManager) recyclerView.getLayoutManager()).findLastVisibleItemPosition(); recyclerView.scrollToPosition(lastPosition);This code uses a LinearLayoutManager to find the position of the last visible item in the RecyclerView, and then scrolls to that position. This effectively scrolls to the bottom of the list. These examples use the android.support.v7.widget.RecyclerView package library, which provides backwards compatibility for older versions of Android.