public void setupTask(Task asyncTask) {
   // Keep task
   mAsyncTask = asyncTask;
   // Wire task to tracker (this)
   mAsyncTask.setProgressTracker(this);
   // Start task
   mAsyncTask.execute();
 }