Hello,
I wanted to know what is the difference between Context.startService(intent) and startService(intent) and does it matter which one is used?
Thank you
Hello,
I wanted to know what is the difference between Context.startService(intent) and startService(intent) and does it matter which one is used?
Thank you
There is only one startService()
method. startService()
is a method on the Context
class, available to all subclasses of Context
, like Activity
or Service
.