Services in Android
Services are seprate entity which is being run in background of the app. It have no effect on the front end of the app activity(functionality). • A facility for the application to tell the system about something it wants to be doing in the background (even when the user is not directly interacting with the application). This corresponds to calls to Context.startService(), which ask the system to schedule work for the service, to be run until the service or someone else explicitly...