Does the CursorAdapter run on a background thread and posts updates via the UI looper thread? If not what is the best pattern to load data asynchronously from a ContentProvider?
+1
A:
The easier way is using the AsyncTask
class. CursorAdapter
does not run on a background thread, AFAIK.
Cristian
2010-09-24 05:20:59