Created
February 18, 2015 18:50
-
-
Save 0x8BADFOOD/d350819d338c033b1275 to your computer and use it in GitHub Desktop.
test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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