
Service
A Service is an application component that can perform long-running
operations in the background and does not provide a user interface.
Another application component can start a service and it will continue to
run in the background even if the user switches to another application.
For example,
play music, perform file I/O, or interact with a content provider, all from the background.
Types of Services:
It...