I have Googled this but can\'t find an answer, so here goes...
I have a ListView that displays some text and an image. The underlying adapter recycles the views for
There is actually a simpler way to do that, you can use a listener :
mListView.setRecyclerListener(new AbsListView.RecyclerListener() { @Override public void onMovedToScrapHeap(View view) { } });