GridView is a ViewGroup just like ListView that allows us to display items in a two-dimensional scrolling grid. Just like a ListView the data into a GridView is populated by an Adapter (ListAdapter) that fetches data from various sources like an array or a database. It’s mostly used to build image, video, audio galleries. Let’s […]
The post Understanding GridView in Android with Custom Adapters by Building an Image Gallery appeared first on Code Theory.