Top "Intentservice" questions

IntentService is a special implementation of Android service component.

Android: keep Service running when app is killed

I want to keep a IntentService running in background even when the app is killed. And by "killed" I mean …

android service background intentservice
Android - Start service on boot

From everything I've seen on Stack Exchange and elsewhere, I have everything set up correctly to start an IntentService when …

java android broadcastreceiver intentservice
How is an Intent Service Declared in the Android Manifest?

Straight forward question: Is an IntentService declared in the Android Manifest as a regular service, or is there another way? …

android service android-manifest intentservice
REST API Client Library for Android

We are building a location based messaging app which uses Parse.com as back-end (Parse.com is similar to Urban …

android rest asynchronous android-library intentservice
How to get Context in an Intent Service

Here's the scenario: I have a WakefulBroadcastReceiver that does a backup to a network computer or the cloud. It's set …

android intentservice
send intent from service to activity

I'm trying to return the result from an IntentSerivce to the mainactivity using an intent, but I can't get it …

android service android-intent intentservice
How to force an IntentService to stop immediately with a cancel button from an Activity?

I have an IntentService that is started from an Activity and I would like to be able to stop the …

android intentservice
Android IntentService not starting

I know this question has been asked many times, but all the other threads didn't solve my issue at all, …

android intentservice
Should I use AsyncTask or IntentService for my application?

I have been reading around on internet connectivity with Android and noticed there are different ways to handle this i.…

android google-maps android-asynctask intentservice
When to unregister BroadcastReceiver? In onPause(), onDestroy(), or onStop()?

When should I use unregisterReceiver? In onPause(), onDestroy(), or onStop()? Note: I need the service to run in the background. …

android broadcastreceiver intentservice