Top "Intentservice" questions

IntentService is a special implementation of Android service component.

Re-launch android application programmatically

I am working on I18N application which works for 6 countries, In have a requirement like, when the user changes …

android android-intent intentservice relaunch
Android Oreo JobIntentService Keep running in background for Android 7 &below and crashing often in Android 8 & above

I have recently replaced all my service to foreground services and JobIntentService since there are some background execution limits (https://…

android intentservice jobintentservice
loop in IntentService

I have an infinite loop in my IntentService to update my view once every 30 seconds based on the input from …

android android-intent intentservice
Android How to queue multiple intents on an IntentService

I am a little bit confused regarding the usage of IntentService. The documentation says that IntentService queues all intents sent …

android service intentservice
Failed to resolve Intent Service Android

I am getting following error when trying to configure Push Notification: 06-07 01:05:59.735 18708-18708/com.ebr.apps.ebr.development E/FirebaseInstanceId: …

android push-notification google-cloud-messaging intentservice
Send a broadcast only to specific Activity

I have one Activity which creates a BroadcastReceiver with an IntentFilter in the method onCreate(...): IntentFilter iFilter = new IntentFilter("action"); …

android broadcastreceiver intentfilter intentservice
Async task does not work properly (doInBackground not executing) when service runs in background, Android

I noticed that sometimes Async task does not work properly , Actually its doInBackground() method does not get called , this happens …

android multithreading service android-asynctask intentservice
How to force stop Intent Service in progress?

I have an intent service which downloads several gigabytes of videos. I have a "Stop" button, to stop the download …

android service intentservice
How do I keep the Thread of an IntentService alive?

I'm writing a test application which keeps track of the users location. The idea is that i can start a …

android multithreading intentservice
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