I\'m trying to figure out how to use Loaders
in Android 3.0 but can\'t seem to get it to work. The docs only describe using CursorLoader
but I\'m using
Alex; Did you try to validate if the onLoadInBackground () gets even called?
onLoadInBackground (): Called on a worker thread to perform the actual load. Implementations should not deliver the result directly, but should return them from this method, which will eventually end up calling deliverResult(D) on the UI thread. If implementations need to process the results on the UI thread they may override deliverResult(D) and do so there.