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

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

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:

 private class DownloadFilesTask extends AsyncTask<URL, Integer, Long> {
      protected Long doInBackground(URL... urls) {
          int count = urls.length;
          long totalSize = 0;
          for (int i = 0; i < count; i++) {
              totalSize += Downloader.downloadFile(urls[i]);
              publishProgress((int) ((i / (float) count) * 100));
          }
          return totalSize;
      }

      protected void onProgressUpdate(Integer... progress) {
          setProgressPercent(progress[0]);
      }

      protected void onPostExecute(Long result) {
          showDialog("Downloaded " + result + " bytes");
      }
 }
link|improve this answer
To make this of any real use other than logging or showing a dialog, you can nest the class you extend AsyncTask with in your UI (or other) class and then call a method from that class with the return value in the onPostExecute method. – cjk Sep 14 '11 at 21:17
feedback

You can retreive the return value of protected Boolean doInBackground() by calling the get() method of AsyncTask class :

AsyncTaskClassName task = new AsyncTaskClassName();
bool result = task.execute(param1,param2......).get(); 

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, AsyncTask offers you two posibilites :

If you want to update the UI in parallel with the task executed in doInBackground() (e.g. to update a ProgressBar), you'll have to call publishProgress() inside the doInBackground() method. Then you have to update the UI in the onProgressUpdate() method.

If you want to update the UI when the task is done, you have to do it in the onPostExecute() method.

/** This method runs on another thread than the UI thread */
@Override
protected String doInBackground(String... _params) {
    for (int progressValue = 0; progressValue  < 100; progressValue++) {
        publishProgress(progressValue);
    }
}

/** This method runs on the UI thread */
@Override
protected void onProgressUpdate(Integer... progressValue) {
    // TODO Update your ProgressBar here
}

/**
 * Called after doInBackground() method
 * This method runs on the UI thread
 */
@Override
protected void onPostExecute(Boolean _result) {
   // TODO Update the UI thread with the final result
}

This way you don't have to care about responsiveness problems.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.