In many articles, tutorials, docs, have read so far, that we call startService() or bindService(), both starts the service. We can call both also, but that\'s a different st
Yes.
bindService(new Intent(this, MyService.class), mConnection, 0);
AFAIK, this will always return true (assuming there is no problem with MyService)
There are two scenarios:
In practice, when I call this method, I assume the service is not started until the onServiceConnected() method is called.