Simple Android grid example using RecyclerView with GridLayoutManager (like the old GridView)
Short answer For those who are already familiar with setting up a RecyclerView to make a list, the good news is that making a grid is largely the same. You just use a GridLayoutManager instead of a LinearLayoutManager when you set the RecyclerView up. recyclerView.setLayoutManager(new GridLayoutManager(this, numberOfColumns)); If you need more help than that, then … Read more