[android-developers] Re: question about process restart management

2008-09-18 Thread hackbod
If you have called startService() for your service, then you are saying you want it to run until it is stopped. So if you kill your process, it will be restarted to continue running the service. Also, when a process running the foreground activities is killed, then that activity will be removed

[android-developers] Re: question about process restart management

2008-09-17 Thread Anshul
Hackborn, I am having the same problem as mentioned in the mail thread below that my activity is being restarted after I am killing it through DDMS or Android shell. My activity starts a service that just prints "Hello" in OnCreateFunction using Log class and does nothing else. >From your e-mail