Top "Android-intentservice" questions

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

Service vs IntentService in the Android platform

I am seeking an example of something that can be done with an IntentService that cannot be done with a …

android multithreading android-service android-intentservice
What is the difference between an IntentService and a Service?

Can you please help me understand what the difference between an IntentService and a Service is?

android android-service android-intentservice
Android RuntimeException: Unable to instantiate the service

I want to create a service which will run on a separate thread (not on UI Thread), so I implemented …

android android-service android-intentservice
Android IntentService can't instantiate class; no empty constructor

I have a MainActivity class that needs to access an online API (thus using network resources). This requires a background …

android broadcastreceiver intentfilter android-intentservice
Run a service in background continuously

Run a service in background continuously. For example, a service has to be kicked off which will display a toast …

android android-intentservice
How to start an IntentService from a WakefulBroadcastReceiver

I have an application, which you should be able to recreate entirely and very easily with the code I'll post …

java android broadcastreceiver android-intentservice
android design considerations: AsyncTask vs Service (IntentService?)

I'm designing an android app which will need to do the following steps: user pushes a button or otherwise indicates …

android android-asynctask background-process android-intentservice
How to keep an IntentService running even when app is closed?

In my Android app I start an IntentService from within an Activity by calling startService(new Intent(this, MyService.class)); …

android android-service intentservice android-intentservice
how to wait the volley response to finish it's work inside intentservice?

Working with intentservice to get the data of 7 Rss Feed links with using " Google Volley " in the background and use …

android rss android-volley intentservice android-intentservice