Re: [android-developers] Crashed service restarted by system doesn't call onStart

2012-03-05 Thread Alexey Zakharov
So what is the right solution. Start service from onCreate? On Wednesday, April 1, 2009 2:38:15 AM UTC+7, Dianne Hackborn wrote: That is working as intended. onStart() is called each time someone calls startService(); if nobody has called startService() since your last onStart(), then

[android-developers] Crashed service restarted by system doesn't call onStart

2009-03-31 Thread Charles Harley
I have noticed that if my background service crashes the system will automatically restart the service after 5 seconds. This is great, but I have noticed that only the onCreate method gets called and not the onStart method. Does this mean the service is properly restarted or do I need to do