Top "Android-intentservice" questions

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

Implement Bluetooth Connection into Service or Application Class without losing connection into a Device

i need some help, can you explain to me how can i implement the Bluetooth Connection from my Application into …

android service bluetooth android-bluetooth android-intentservice
Native crash in /system/lib/libart.so

I have an app on the Play Store, it has an IntentService that does some work when the app starts, …

android native galaxy android-intentservice
Unable to find explicit activity class {}; have you declared this activity in your AndroidManifest.xml

I'm trying unzip some files in background, so I use IntentService like in google's tutorial. My service class declared in …

java android android-manifest android-intentservice
onServicesDiscovered(BluetoothGatt gatt, int status) is never called

I have a BluetoothLeService which is called from IntentService. BLEService works fine until it connects. After it establishes the connection …

android bluetooth bluetooth-lowenergy android-intentservice
Background service using alarm manager

I have followed below example code for implementing Periodic background service. Periodic task executes correctly If app on foreground on 1…

android broadcastreceiver android-service android-pendingintent android-intentservice
Android: How to determine if IntentService is running?

I have an activity for upload from which I am calling Intent service. In there I am handling the API …

android android-intent service android-intentservice activity-manager
How to download multiple files concurrently using intentservice in Android?

I want to create a service similar to this one, (reference from Here), to download multiple files asynchronously in Android. …

java android multithreading android-download-manager android-intentservice
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
How to read SMS code from your android App

We are looking to build the functionality in our app to read a security code that being sent as part …

android android-intentservice
Android: intentservice, how abort or skip a task in the handleintent queue

i have an activity ("ApplicationActivity") that call an intent service ("DownloadService") The intentService download files from internet in background, but …

android android-intent queue android-intentservice