When a certain condition is met in my code, I need to update only a single View
within each row of my ListView
(each row contains multiple views). Is there a way to target only the updated Views?
I have tried setting a flag and then calling notifyDataSetChanged()
, however, how do I know when notifyDataSetChanged()
has finished calling getView(...)
for the currently visible items?