I am new to Android development and have been following the tutorials available on the Android website. I am currently on the section of tutorials for Views, specifically th
By setting Adapter, you are telling GridView to fetch views from the Adapter to fill up all the grids. So getView is internally called by GridView to fill up the layout.
Thats why all the adapters implements Adapter interface so that any AdapterView can request the Adapter.