Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I got a geolocation service. When force killed using some Task Killing apps, in the 'Manage Application' -> Running tab my App is showing as 0 Process and 1 service, and status is Restarting, but not getting restarted.

public int onStartCommand(Intent intent, int flags, int startId) {
    return START_REDELIVER_INTENT;
}

I started my service using

startService(new Intent(this, MyService.class));

Is there any way to restart the process?

share|improve this question

1 Answer

up vote 3 down vote accepted

Use

return START_STICKY

instead.

share|improve this answer
can you please tell me the difference between force kill and force stop, because when force killed the service getting started, but when i force stopped it is not getting restarted. – Lenin Jan 25 '12 at 11:28
A service gets force killed if the system has not enough resources left. It is force closed if an error occurred or the user manually stopped it (and therefore it won't be restarted). – Force Jan 25 '12 at 11:30
Yeah i got it. Thanks for your kind answer. – Lenin Jan 25 '12 at 11:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.