I saw somewhere method to make RecyclerView show ViewHolders from bottom to top. Now, i can\'t find it anywhere (after half of hour going through <
Solution on your query:
LinearLayoutManager layoutManager=
new LinearLayoutManager(getApplicationContext(),LinearLayoutManager.VERTICAL,true);
layoutManager.setStackFromEnd(true);
recyclerView.setLayoutManager(layoutManager);
In above code recyclerView is the id of RecyclerView and layoutManager is object of LinearLayoutManager.