When creating a customized adapter for ListView in android, I see that I have to create a class the extends ArrayAdapter class and imp
adapter
ListView
ArrayAdapter
getView(int position, View view, ViewGroup parent)
is called for the
List of Objects
of the nos of elements using
getItem(int position)
for the length of our List
so, it is called nos of times untill your entire list has been allocated a layout and data from list.