[android-developers] Re: Problem 2nd launch of my application

2008-08-27 Thread bleucalme
I fixed my problem. I had a thread that was still running when I taught my application was closed. Closing this thread in "OnDestroy()" workded (like LunarView example). Thanks everybody On Aug 27, 12:26 pm, hackbod <[EMAIL PROTECTED]> wrote: > Seeing the process running doesn't mean anything. >

[android-developers] Re: Problem 2nd launch of my application

2008-08-27 Thread hackbod
Seeing the process running doesn't mean anything. Please read: http://code.google.com/android/intro/appmodel.html On Aug 27, 8:13 am, bleucalme <[EMAIL PROTECTED]> wrote: > First, thank you for those quick replies. > > You're right, my application is still running after I taught it was > closed.

[android-developers] Re: Problem 2nd launch of my application

2008-08-27 Thread bleucalme
First, thank you for those quick replies. You're right, my application is still running after I taught it was closed. For people having similar problems, in Eclipse, we can see active process under "DDMS"--> "emulator". I'll work on my bug and keep you informed. Thanks. On Aug 26, 3:48 pm, St

[android-developers] Re: Problem 2nd launch of my application

2008-08-26 Thread StevePotell
bleucalme, Kind of looks like your app is still running, make sure you call finish() when closing the app. Also close and free any system resources you may be using (like media player, etc) prior to calling finish(). --~--~-~--~~~---~--~~ You received this message

[android-developers] Re: Problem 2nd launch of my application

2008-08-26 Thread Megha Joshi
Can you paste the complete logcat output..to see what happens before/after the warning... Also, when you start it again, I guess onResume() is called...can you paste the code in onResume() of your application? 2008/8/26 bleucalme <[EMAIL PROTECTED]> > > Hi > > When I start my application, everyth