LayoutManager is a class that displays layouts in a RecyclerView . So change the recyclerView.setLayoutManager(LayoutManager) if you want to change the layout. In your case, if you are using LinearLayoutManager , do this by calling:
LinearLayoutManager layoutManager = ... recyclerView.setLayoutManager(layoutManager); //when you want horizontal layoutManager.setOrientation(context,LinearLayoutManager.HORIZONTAL,false); //when you want vertical layoutManager.setOrientation(context,LinearLayoutManager.VERTICAL,false);
source share