it's a simple question.
suppose i call notifyDatasetChanged(), and wish to be notified when the adapterView (listView/gridView/...) has finished calling getView() on the adapter, how do i do that?
The problem is that getView can be called multiple times on the same view, have weird order of calls and so you can never know when it has finished calling on all of the (currently shown) items.
would using this solution ( which uses the ViewTreeObserver and OnPreDrawListener) work on this case ?