In the click handler for a button, I'm loading some data from a content provider (using getContentResolver().query(...)
), then sending that data off in a network request. Since the query happens on the main thread with this approach, I want to move this off the main UI thread.
I think I can use a LoaderManager, and fire off the network request in onLoadFinished()
, but the problem is that I don't want onLoadFinished()
called ever again (for that Loader id), because I don't want to fire the network request again, during a screen orientation for example.
So, how do I use a LoaderManager for a query that I only want to happen only once?
Calling
LoaderManager#initLoader()
in yourActivity#onCreate()
method will either create a newLoader
and force a new load, or reuse an existingLoader
and deliver the most recently queried data if any exists. So as long as you are using theLoaderManager
correctly (i.e. the way the developer's site recommends in the documentation), you shouldn't have any problems.