I have an Android ListActivity that is backed by a database Cursor through a SimpleCursorAdapter.
When the items are clicked, a flag field in the coresponding row in the database is toggled and the view in the list needs to be updated.
The problem is, when the view that’s updated goes off screen and is recycled, the old value is displayed on the view when it returns into view. The same thing happens whenever thr list is redrawb (orientation changes, etc).
I use notifydatasetchanged() to refresh the cursor adapter but it seems ineffective.
How should I be updating the database so the cursor is updated as well?
Call
requery()on theCursorwhen you change data in the database that you want reflected in thatCursor(or things theCursorpopulates, like aListViewvia aCursorAdapter).A
Cursoris akin to an ODBC client-side cursor — it holds all of the data represented by the query result. Hence, just because you change the data in the database, theCursorwill not know about those changes unless you refresh it viarequery().UPDATE: This whole question and set of answers should be deleted due to old age, but that’s apparently impossible. Anyone seeking Android answers should bear in mind that the Android is a swiftly-moving target, and answers from 2009 are typically worse than are newer answers.
The current solution is to obtain a fresh
Cursorand use eitherchangeCursor()orswapCursor()on theCursorAdapterto affect a data change.