[android-developers] Re: Howto remove thread from Dalvik VM????

2009-02-01 Thread Mark Murphy
sagar.indianic wrote: Is there any replacement for threads..or else I will have to change my logic as u described.. Animations do not necessarily need background threads. If you decide you do need threads, I use objects out of java.util.concurrent package to help with thread management. The

[android-developers] Re: Howto remove thread from Dalvik VM????

2009-01-31 Thread sagar.indianic
Thanks for reply fadden.. Is there any replacement for threads..or else I will have to change my logic as u described.. On Jan 31, 7:20 am, fadden fad...@android.com wrote: On Jan 30, 6:30 am, Sagar Parmar sagar.india...@gmail.com wrote: I am using Thread to display animation..I create a

[android-developers] Re: Howto remove thread from Dalvik VM????

2009-01-30 Thread fadden
On Jan 30, 6:30 am, Sagar Parmar sagar.india...@gmail.com wrote: I am using Thread to display animation..I create a new thread whenever user preference is changed.Now I want to Remove the previous thread from Dalvik VM so that my application does not crash..How can I remove Thread from DVM??