Top "Intentservice" questions

IntentService is a special implementation of Android service component.

Android Alert dialog from inside an intent service

I want to display an alert dialog from inside an intent service. AlertDialog alertDialog = new AlertDialog.Builder(this).create(); This …

android android-intent android-alertdialog intentservice
Android: Using WebView outside an Activity context

I am trying to achieve Web Scraping through a background IntentService that periodically scrape a website without a view displaying …

android android-activity android-webview web-scraping intentservice
Need Help in Downloading in Background Images in Android?

I have an image view , i had written swiping , at that time of swiping,the images are downloading from Internet, …

android service android-asynctask intentservice
What is the difference between service, intentService in android?

What is the difference between Service and an IntentService in Android? What is the difference between AsyncTask and an IntentService …

android android-asynctask android-service intentservice
Proper way to stop IntentService

I'm using an IntentService to upload images to a server. My problem is that I don't know how/when to …

android intentservice
Service has leaked ServiceConnection that was originally bound here

I am using a BraodCastReceiver that starts an IntentService. Everythings look working good, but I get this error which I …

android service broadcastreceiver intentservice
Waiting for asynchronous callback in Android's IntentService

I have an IntentService that starts an asynchronous task in another class and should then be waiting for the result. …

java android asynchronous intentservice
Android how to check if the intent service is still running or has stopped running

I need to know if all intentservices in the queue are "consumed" or the other way is to find out …

android intentservice
How to use Notification.deleteIntent

I'm trying to detect when my notification gets cleared. My question directly refers to this answer which outlines what I'm …

android notifications android-intent intentservice
Android Work Manager vs Services?

In my Android app i have multiple intent services which run one after another and the very first intent service …

java android intentservice android-jetpack android-workmanager