I know that RecyclerView has replaced the functionality of the old ListView and GridView. I am looking for a very basic example that s
RecyclerView
ListView
GridView
You should set your RecyclerView LayoutManager to Gridlayout mode. Just change your code when you want to set your RecyclerView LayoutManager:
LayoutManager
recyclerView.setLayoutManager(new GridLayoutManager(getActivity(), numberOfColumns));