ListView (Adapter) item visibility listener
问题 Is it possible to have a visibility listener on each listview's item? Like: on user sees the item, do something. On item is hidden, do something else. I want to check when a item "enters" or "exits" the scroll so as to update a second list. Additionaly my ListView might expand like: adapter.addAll( (Collection<? extends DBObject>) events); adapter.notifyDataSetChanged(); I think a way might be to use a global listener to check the items but I am afraid it will get messed up if I add more