[android-developers] Re: this.finish() did the activity totally exist??

2008-10-20 Thread Jason Parekh
This may be useful (first hit from 'java interrupt thread'): http://articles.techrepublic.com.com/5100-10878_11-5144546.html jason On Sun, Oct 19, 2008 at 7:58 PM, Wesley [EMAIL PROTECTED] wrote: hi, how to terminate a threads??? any example??? how to free all resources??? do u mind

[android-developers] Re: this.finish() did the activity totally exist??

2008-10-19 Thread Romain Guy
It is normal. finish() does not necessarily destroy the process. Android manages processes automatically and destroy processes whenever more resources are need. Just don't worry about it :) On Sun, Oct 19, 2008 at 7:33 PM, Wesley Sagittarius [EMAIL PROTECTED] wrote: hi, I don't know is it a

[android-developers] Re: this.finish() did the activity totally exist??

2008-10-19 Thread Wesley
oic... because I afraid if some of my thread still running at the background... and I can't manage to allocate it... if this is the case... I think I should move on... thanks Romain... have a nice day... Wesley. On Mon, Oct 20, 2008 at 10:37 AM, Romain Guy [EMAIL PROTECTED] wrote: It is

[android-developers] Re: this.finish() did the activity totally exist??

2008-10-19 Thread Wesley
hi, how to terminate a threads??? any example??? how to free all resources??? do u mind give me some example a simple one will do... thanks... wesley. On Mon, Oct 20, 2008 at 10:51 AM, Romain Guy [EMAIL PROTECTED] wrote: You should free all resources and terminate all your threads

[android-developers] Re: this.finish() did the activity totally exist??

2008-10-19 Thread Romain Guy
You should free all resources and terminate all your threads when you Activity stops or is destroyed (in onDestroy().) On Sun, Oct 19, 2008 at 7:50 PM, Wesley [EMAIL PROTECTED] wrote: oic... because I afraid if some of my thread still running at the background... and I can't manage to allocate