Top "Android-intentservice" questions

The IntentService class provides a straightforward structure for running an operation on a single background thread.

Problems in Calling AsyncTask from IntentService

I have created IntentService class and performing asyncTask but getting exception when onPreExecute() is called at this code line pDialog.…

android android-asynctask android-service android-intentservice
What are differences between JobIntentService and IntentService?

I do not understand what difference between those two APIs. I mean when to use the first one. Why is …

java android background-process android-intentservice jobintentservice
JobIntentService doesn't start immediately on Android 8.0

I have implemented JobIntentService to do some background task which works fine on older Android devices (pre Android O). I …

android android-intent android-intentservice android-8.0-oreo
Android Service extends ResultReceiver for IntentService, how to implement CREATOR?

My app relies on a Service which stays in sync with external hardware in the background. Because the service operates …

android android-service intentservice android-intentservice
START_STICKY for IntentService

I have seen many android Service examples where return START_STICKY is used to start an app on boot but …

android service android-service intentservice android-intentservice
Android: multiple intentservices or one intentservice with multiple intents?

I'm a little confused about intentService. The docs say that if you send an intentService multiple tasks (intents) then it …

android multithreading android-service android-intentservice worker-thread