What is the difference? The android documentation doesn't have a description for notifyDataSetInvalidated(). I was thinking maybe you call that function to notify all registered listeners, but use notifyDataSetChanged() to not notify them?

link|improve this question

feedback

1 Answer

up vote 11 down vote accepted

Changed means the data set changed. Individual items updated, or items were added or removed. Invalidated means the data source is no longer available.

link|improve this answer
5  
To expand on this, a response from Romain Guy: "notifyDataSetInvalidated() means that the data inside the adapter is no longer valid. This will cause ListView to stop populating. There should seldom be any reason to use it." – Glendon Trullinger Jun 17 '11 at 0:25
To further explain @Glendon's comment, this Google groups thread and this one contained similar questions that were answered by an Android framework engineer named Romain Guy. – Jeff Axelrod Jun 22 '11 at 14:49
If anyone is interested in what happens programmatically behind the scenes when calling these methods, see my answer here – Turbo Oct 12 '11 at 0:28
The documentation for these methods has been expanded for an upcoming release. – adamp Oct 12 '11 at 4:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.