ListView not updating after web service Sync
问题 I have impelmented SyncAdapter that calls webservice and insert/update database. I would like to show some of this data in ListView so i implemented ListFragment in witch the data is displayed via CursorAdapter . And everything works ok, except when I get new data from web and insert it into database, the CursorAdapter is not updated and new data is not shown in ListView In my ContentProvider , after every insert I call context.getContentResolver().notifyChange(uri, null); This is