I have a SQLite database I would like to query. I want to target Android 2.2 through ICS. I came across this article on how to do this, but it uses deprecated code (does not que
I know this is an old question but for people who visit this page:
SimpleCursorAdapter has a new constructor:
SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to, int flags)
this cunstructor does not use UI thread. You can use it safey.