AsyncTask uses a thread pool behind the scenes, and assumes it has control over the threads. I don't think it's a good idea to join them, etc.
There is a get() method that lets you wait for the computation to complete. Is that what you want? You have to make a thread sleep in the context of that thread anyway, so you can just use the Thread class to get the current thread. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

