Top "Intentservice" questions

IntentService is a special implementation of Android service component.

Subscribing or binding to an existing Intent service

I have an app that has an initial activty that list some files within a list view. When an item …

android android-intent android-service intentservice
How to start a notification in IntentService

I'm try to send a notification when a user enters or exits a specific geofence. I already can log when …

android intentservice geofencing android-geofence
Method onHandleIntent() does not get called

After many hours of researching I am finally consulting official help. Why does not onHandleIntent() get called? Is there something …

java android android-service intentservice
How to get Activity in Intent Service

I want to get activity in intent service. In intent service, fill data to list control. When i call the …

android android-intent intentservice
How to create toast from IntentService? It gets stuck on the screen

I'm trying to have my IntentService show a Toast message, but when sending it from the onHandleIntent message, the toast …

android multithreading intentservice android-toast
handler.postDelayed is not working in onHandleIntent method of IntentService

final Handler handler = new Handler(); LOG.d("delay"); handler.postDelayed(new Runnable() { @Override public void run() { LOG.d("notify!"); //calling …

android intentservice android-handler android-intentservice postdelayed
StartForeground for IntentService

I have an IntentService and I want to make it sticky with an ongoing notification. The problem is that the …

android intentservice foreground-service
Can an IntentService run indefinitely?

Based on my understanding, an IntentService will get stopped when its current request is done. Consider the below scenario, i …

android intentservice
Stopping an IntentService from an activity

I have an IntentSerivce that runs in the background sometimes and it can be quite a long running process in …

android intentservice
Android IntentService Instantiation error

Possible Duplicate: Android RuntimeException: Unable to instantiate the service I am downloading my data using IntentService. My IntentService class definition …

android runtime-error intentservice