List of usage examples for android.app IntentService subclass-usage
From source file com.android.messaging.datamodel.NoConfirmationSmsSendService.java
/** * Respond to a special intent and send an SMS message without the user's intervention, unless * the intent extra "showUI" is true. */ public class NoConfirmationSmsSendService extends IntentService { private static final String TAG = LogUtil.BUGLE_TAG;
From source file com.nadmm.airports.library.LibraryService.java
public static final String LIBRARY_HOST = "commondatastorage.googleapis.com"; public static final String LIBRARY_PATH = "/flightintel/library"; public static final String ACTION_GET_BOOK = "flightintel.library.action.GET_BOOK"; public static final String ACTION_DELETE_BOOK = "flightintel.library.action.DELETE_BOOK"; public static final String ACTION_CHECK_BOOKS = "flightintel.library.action.CHECK_BOOKS"; public static final String ACTION_DOWNLOAD_PROGRESS = "flightintel.library.action.PROGRESS";
From source file com.sonaive.v2ex.ui.debug.RSSPullService.java
/**
* This service pulls RSS content from a web site URL contained in the incoming Intent (see
* onHandleIntent()). As it runs, it broadcasts its status using LocalBroadcastManager; any
* component that wants to see the status should implement a subclass of BroadcastReceiver and
* register to receive broadcast Intents with category = CATEGORY_DEFAULT and action
* Constants.BROADCAST_ACTION.
From source file com.brightsilence.dev.androidphotobackup.PhotoBackupService.java
/** Implements an Android Service which actually does the work of backing up the media files based on the setting entered by the user. */ public class PhotoBackupService extends IntentService { public static final String TAG = "PhotoBackup::PhotoBackupService";
From source file com.cyanogenmod.updater.service.DownloadService.java
public class DownloadService extends IntentService implements Response.Listener<JSONObject>, Response.ErrorListener { private static final String TAG = DownloadService.class.getSimpleName(); private static final String EXTRA_UPDATE_INFO = "update_info";
From source file se.bjarntoft.detectionclient.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public RegistrationIntentService() { super(TAG);
From source file com.akaashvani.akaashvani.geofence.GeofenceTransitionsIntentService.java
/**
* Listener for geofence transition changes.
*
* Receives geofence transition events from Location Services in the form of an Intent containing
* the transition type and geofence id(s) that triggered the transition. Creates a notification
* as the output.
From source file com.commonsware.android.tte.DocumentStorageService.java
public class DocumentStorageService extends IntentService { private static final String EXTRA_CLOSING = "isClosing"; public static void loadDocument(Context ctxt, Uri document) { Intent i = new Intent(ctxt, DocumentStorageService.class).setAction(Intent.ACTION_OPEN_DOCUMENT) .addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION).setData(document);
From source file br.ufrn.dimap.pubshare.download.service.DownloaderService.java
/**
* Service responsible for downloading articles from online libraries
*
* @author Lucas Farias de Oliveira <i>luksrn@gmail.com</i>
*
*/
From source file cl.telematica.android.alimentame.GeofenceTransitionsIntentService.java
/**
* Listener for geofence transition changes.
*
* Receives geofence transition events from Location Services in the form of an Intent containing
* the transition type and geofence id(s) that triggered the transition. Creates a notification
* as the output.