in a AsyncTask
where goes the return value of
protected Boolean doInBackground(Integer... params)
usually we start AsyncTask with
new AsyncTaskClassName().execute(param1,param2......);
which doesn't return any value
|
in a AsyncTask where goes the return value of
usually we start AsyncTask with
| ||||
|
feedback
|
|
The value is then available in onPostExecute which you may want to override in order to work with the result. Here is example code snippet from Google's docs:
| |||
feedback
|
|
You can retreive the return value of protected Boolean
But be careful of the responsivness of the UI. If you are using an inner class, it's better to do the job into the onPostExecute(Boolean result) method. If you just want to update the UI, If you want to update the UI in parallel with the task executed in If you want to update the UI when the task is done, you have to do it in the
This way you don't have to care about responsiveness problems. | ||||
|
feedback
|