What\'s the difference in calling stopSelf() , stopSelf(int) or stopService(new Intent(this,MyServiceClass.class)) inside
stopSelf()
stopSelf(int)
stopService(new Intent(this,MyServiceClass.class))
stopService() is called from the class from where the Service is started. stopSelf() is called within the running service class to stop the Service