Skip to content

Instantly share code, notes, and snippets.

@0x8BADFOOD
Created February 18, 2015 18:50
Show Gist options
  • Save 0x8BADFOOD/d350819d338c033b1275 to your computer and use it in GitHub Desktop.
Save 0x8BADFOOD/d350819d338c033b1275 to your computer and use it in GitHub Desktop.
test
case R.id.buttonRun:
Log.e(LOG_TAG, "buttonRun");
if (myTaskList != null && myTaskList.size() > 0){
for(MyTask task : myTaskList) {
Log.e(LOG_TAG, "Stopping task: " + task.getTaskID());
task.cancel(true);
}
myTaskList.clear();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment