Example usage for android.app Service subclass-usage

List of usage examples for android.app Service subclass-usage

Introduction

In this page you can find the example usage for android.app Service subclass-usage.

Usage

From source file org.zywx.wbpalmstar.platform.push.PushService.java

/**
 * ???PushService ??Manifest?????
 */
public class PushService extends Service implements PushDataCallback {

    private String softToken;

From source file com.bubblegum.traceratops.app.service.LoggerService.java

public class LoggerService extends Service {
    private static final String TAG = "bubblegum_loggerservice";

    public static final String ACTION_ERROR = "com.bubblegum.traceratops.app.SERVICE_ERROR";
    public static final String EXTRA_ERROR_CODE = ":traceratops:loggerService:errorCode";

From source file com.martineve.mendroid.sync.MendeleySyncAdapter.java

public class MendeleySyncAdapter extends Service {

    private static final String TAG = "com.martineve.mendroid.sync.MendeleySyncAdapter";
    private static SyncAdapterImpl sSyncAdapter = null;
    private static ContentResolver mContentResolver = null;
    public static int failCount = 0;

From source file com.cattle.service.PhotoUploadService.java

public class PhotoUploadService extends Service {

    private class UpdateBigPictureStyleRunnable extends PhotupThreadRunnable {

        private final PhotoUpload mSelection;

From source file com.radicaldynamic.groupinform.services.InformOnlineService.java

/**
 * 
 */
public class InformOnlineService extends Service {
    private static final String t = "InformOnlineService: ";

From source file com.amaze.filemanager.asynchronous.services.ExtractService.java

    // list of data packages,// to initiate chart in process viewer fragment
    private ArrayList<DatapointParcelable> dataPackages = new ArrayList<>();

    private NotificationManager mNotifyManager;
    private NotificationCompat.Builder mBuilder;
    private ProgressHandler progressHandler = new ProgressHandler();

From source file io.clh.lrt.androidservice.TraceListenerService.java

public class TraceListenerService extends Service {
    private static final String TRACE_SERVICE_VERSION = "0.1.0";
    private static final String API_URL = "lrtserver.herokuapp.com";

    private HashMap<String, String> appLut = new HashMap<String, String>();

From source file com.baruckis.nanodegree.spotifystreamer.PlayerService.java

public class PlayerService extends Service
        implements MediaPlayer.OnPreparedListener, MediaPlayer.OnErrorListener, MediaPlayer.OnCompletionListener {

    // Service will respond to this action String
    public static final String RECEIVE_BROADCAST_INTENT_PAUSE = "com.baruckis.nanodegree.spotifystreamer.receive_broadcast_intent_pause";
    public static final String RECEIVE_BROADCAST_INTENT_NOTIFICATION = "com.baruckis.nanodegree.spotifystreamer.receive_broadcast_intent_notification";

From source file com.davidmiguel.gobees.monitoring.MonitoringService.java

/**
 * Monitoring service.
 * It reads the camera feed and run the bee counter algorithm in background.
 * It also gets weather information periodically.
 * Notes:
 * - Intent with START action: starts monitoring.

From source file org.mariotaku.twidere.service.RefreshService.java

public class RefreshService extends Service implements Constants {

    @Inject
    SharedPreferencesWrapper mPreferences;

    private AlarmManager mAlarmManager;