The reason I\'m asking that is because requery() is deprecated. What is the best way now to refresh your ListView?
This is what works for me, im not sure its the best way.
c = db.rawQuery( "SELECT * FROM mytable", null); //same line of the first initialization
adapter.swapCursor(c);
I refresh the only cursor, I dont know what to do with a new one. Also i dont know pepole that answer with only a name of a function.