If you are using GridLayoutManager with RecyclerView, easy way to fill vertically data first is :
GridLayoutManager lLayout_artist = new GridLayoutManager(getActivity(),3,GridLayoutManager.HORIZONTAL, false);
You can change orientation of GridLayoutManager as per your requirement.