Intent Service

Understanding Service, IntentService and BindService of android

Service is the most important component in android. Service is running in background It means that it does not have the user interface. It is an independent of activity means it does not matter if an activity is running or destroyed, service always running in the background. Service is used for long background task it […]

Scroll to top