I have been searching about any call back method that is called when last getView() has completed its execution, or I may say all item in the AdapterView are drawn/laid.
I found there isn’t any specific android api Method that acts as a call back method.
Please guys help me finding a way, How can we detect the call to last getView() for a particular data source list.
There is no last getView()
When you are scrolling in a list, for each item that will become visible an
getViewwill be called. EVEN when it has already been on screen.So if you want to know if each item in a
ListViewhas been visible, you have to count for your self :).