I saved a handle to an AsyncTask() like so: AsyncTask up_check = new update_checker().execute();
I start it up in onStart() and my logging tells me that it's running. Then I start another activity with this in the onPause(): up_check.cancel(true); up_check is a member of the Activities class. Logging shows me that the onPause() method is being called, yet the AsyncTask is still running while I'm viewing the other activity. I've had other problems with onPause(). I'm pretty sure I was unable to set setResult() from there. Maybe I'm wrong. Anyway, are there imits to what we can do in onPause()? Thanks, Tobiah -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

