I\'m watching content updates on a ListActivity using a ContentObserver as follows:
protected void onCreate(Bundle savedState) { super.onCreate(sa
I have not used changeCursor(). And, since the query you used to create the Cursor is the same as the query you are using to "change" the cursor, I'd dump the changeCursor() call outright and just call requery() on the Cursor you have.
changeCursor()
Cursor
requery()