I use an AsyncTask for loading operations that I implemented as an inner class. In onPreExecute() I show a loading dialog which I then hide again in onPostExecute(). But for some of the loading operations I know in advance that they will finish very quickly so I don't want to display the loading dialog. I wanted to indicate this by a boolean parameter that I could pass to onPreExecute() but apparently for some reason onPreExecute() doesn't take any parameters. The obvious workaround would probably be to create a member field in my AsyncTask or in the outer class which I would have to set before every loading operation but that does not seem very elegant. Is there a better way to do this?
|
You can override the constructor. Something like:
Then, when calling the task, do something like:
Edit: this is more useful than creating member variables because it simplifies the task invocation. Compare the code above with:
|
|||||||||||||
|
|
Creating the member field in your subclass is the way to go. Elegant doesn't mean this time you have to change how base classes define methods. |
|||||
|
|
1) For me that's the most simple way passing parameters to async task is like this
Declare and use the async task like this
2) Passing methods to async-task In order to avoid coding the async-Task infrastructure (thread, messagenhandler, ...) multiple times you might consider to pass the methods which should be executed in your async-task as a parameter. Following example outlines this approach. In addition you might have the need to subclass the async-task to pass initialization parameters in the constructor.
|
||||
|
|