Sure this is a trivial question. What appens if I start a service, using the following code:
startService(new Intent(this,myService.class));
and then I accidentally recall the above code, while the service is yet running?
I'm afraid that that the second call to startservice can create a new service in order to have two different process executing at same time.