In my app i have an activity from which i want to start an Service Can any body help me?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
The application can start the service with the help of the Context.startService method. The method will call the onCreate method of the service if service is not already created; else onStart method will be called. Here is the code to start the MyService:
|
|||
|
|
|
Add this in your code
Dont forget to add service tag in AndroidManifest.xml file
|
|||
|
|
|
|||
|
|
