I have created a ListView using CursorAdapter . Now I am Trying to update the ListView and Refresh the value to the ListView .
ListView
CursorAdapter
If CursorDemo extends CursorAdapter, then you have to use adapter.swapCursor(cursor_update);
adapter.swapCursor(cursor_update);
That should swap the old cursor out for the new one and reload the data. With swapCursor, the old cursor is not closed.
swapCursor