One of my methods returns a Cursor from some SQLite query results.
As I\'m navigating through the cursor, there are some records I want to change/update. Can I updat
You need to implement a Content Provider that allows to update the record, in short you need to override the update function in your ContentProvider class.
public int update(Uri uri, ContentValues values, String where, String[] whereArgs)
In short you'll have to update them, this is not done directly from the data received in the Cursor.
This and this link should help.