What is the difference between Context.startService(intent) and startService(intent) and does it matter which one is used?
What is the difference between Context.startService(intent) and startService(intent) and does it matter which one
Share
There is only one
startService()method.startService()is a method on theContextclass, available to all subclasses ofContext, likeActivityorService.