List of usage examples for android.app IntentService subclass-usage
From source file com.appdynamics.demo.gasp.service.RESTIntentService.java
/**
* Closely modeled on Neil Goodman's Android REST tutorials
* https://github.com/posco2k8/rest_service_tutorial
* https://github.com/posco2k8/rest_loader_tutorial.git
*
* @author Mark Prichard
From source file com.cloudbees.gasp.service.RESTIntentService.java
/**
* Closely modeled on Neil Goodman's Android REST tutorials
* https://github.com/posco2k8/rest_service_tutorial
* https://github.com/posco2k8/rest_loader_tutorial.git
*
* @author Mark Prichard
From source file org.jboss.aerogear.android.sync.SyncService.java
/**
* Activities can bind to this service and use it to send documents to a sync
* server instance. Additionally they can subscribe to update events from this
* service.
*
* To activate this service in your AndroidManifest.xml include the following:
From source file org.opendatakit.scan.services.ProcessFormsService.java
/** * This service invokes the cpp image processing code to run in the background. * It creates a notification that it's processing an image and updates it when it completes. */ public class ProcessFormsService extends IntentService {
From source file com.bluros.updater.service.UpdateCheckService.java
public class UpdateCheckService extends IntentService implements Response.ErrorListener, Response.Listener<JSONObject> { private static final String TAG = "UpdateCheckService"; // Set this to true if the update service should check for smaller, test updates
From source file com.manning.androidhacks.hack043.service.SQLContentProviderService.java
public class SQLContentProviderService extends IntentService { private static final String TAG = SQLContentProviderService.class.getCanonicalName(); public SQLContentProviderService() { super(SQLContentProviderService.class.getSimpleName()); }
From source file org.francho.apps.zgzpolen.service.PollenService.java
public class PollenService extends IntentService { private static final String POLEN_XML_URL = "http://www.zaragoza.es/datos/movil/include/polen.xml"; private static final String POLLEN_SERVICE_PREFS = "PollenServicePreferences"; private static final String PREF_POLLEN_DATE = "pollenDate";
From source file com.klinker.android.twitter.services.TrimDataService.java
public class TrimDataService extends IntentService { SharedPreferences sharedPrefs; public static final int TRIM_ID = 161;
From source file com.example.android.sunshine.app.service.SunshineService.java
public class SunshineService extends IntentService { //we are not using this class its only for educational purpose private ArrayAdapter<String> mForecastAdapter; public static final String LOCATION_QUERY_EXTRA = "lqe"; private final String LOG_TAG = SunshineService.class.getSimpleName();
From source file ca.hoogit.garagepi.Controls.DoorControlService.java
public class DoorControlService extends IntentService { private static final String TAG = DoorControlService.class.getSimpleName(); public DoorControlService() { super("DoorControlService");