Android Services:
Services are the android components which run in background.
A service doesn’t have a user interface. Service extends the base class
‘service’.
Life Cycle of a service:
onCreate():Called when
the service is first created.
onStart():Called when the service is being started. (via
startService())
onDestroy():Called when the service is being removed.