[android-developers] Re: reusing AsyncTaskLoader with always fresh data

2013-04-03 Thread Streets Of Boston
The call to getLoaderManager().initLoader(0, args, this); is enough to have your Loader run at least the first time it is created. Do *not *call 'startLoading()'. If you want to refresh your Loader's data call getLoaderManager().*restart*Loader(0, args, this); When initLoader or

Re: [android-developers] Re: reusing AsyncTaskLoader with always fresh data

2013-04-03 Thread Ralph Bergmann | the4thFloor.eu
Am 03.04.13 15:37, schrieb Streets Of Boston: The call to getLoaderManager().initLoader(0, args, this); is enough to have your Loader run at least the first time it is created. Do *not *call 'startLoading()'. yeah... reading helps :-) startLoading() This function will normally be called