RecyclerView has a stackFromEnd attribute.
<android.support.v7.widget.RecyclerView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/recyclerView" android.support.v7.recyclerview:stackFromEnd ="true"/>
Or you can do it with code
mLayoutManager = new LinearLayoutManager(getActivity()); mLayoutManager.setReverseLayout(true); mLayoutManager.setStackFromEnd(true);
source share