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 com.gsoc.ijosa.liquidgalaxycontroller.PW.UrlDeviceDiscoveryService.java

/**
 * This is a service that scans for nearby Physical Web Objects.
 * It is created by MainActivity.
 * It finds nearby ble beacons,
 * and stores a count of them.
 * It also listens for screen on/off events

From source file com.ds.owl.dsdormitory.RecoBackgroundRangingService.java

/**
 * RECOBackgroundRangingService is to monitor regions and range regions when the device is inside in the BACKGROUND.
 *
 * RECOBackgroundMonitoringService ?? monitoring? ,  region    ? ?? ranging? .
 */
public class RecoBackgroundRangingService extends Service

From source file uk.ac.ucl.excites.sapelli.relay.BackgroundService.java

/**
 * A service that checks if the phone received any SMS messages and POST them to the server
 * 
 * @author Michalis Vitos
 * 
 */

From source file cc.arduino.mvd.services.BinocularService.java

/**
 * This is the http integration of MVD.
 *
 * @author Andreas Goransson, 2015-03-19
 */
public class BinocularService extends Service {

From source file org.c99.SyncProviderDemo.EventosSyncAdapterService.java

/**
 * @author sam
 * 
 */
public class EventosSyncAdapterService extends Service {
    private static final String TAG = "ContactsSyncAdapterService";

From source file org.dvbviewer.controller.service.SyncService.java

/**
 * The Class SyncService.
 *
 * @author RayBa
 * @date 07.04.2013
 */

From source file com.alexandreroman.nrelay.NmeaRelayService.java

public class NmeaRelayService extends Service
        implements GpsStatus.NmeaListener, GpsStatus.Listener, LocationListener {
    private static final SparseIntArray STR_STATES = new SparseIntArray(4);
    static {
        STR_STATES.put(State.STARTING.ordinal(), R.string.notif_starting);
        STR_STATES.put(State.GPS_DISABLED.ordinal(), R.string.notif_gps_disabled);

From source file org.c99.SyncProviderDemo.ContactsSyncAdapterService.java

/**
 * @author sam
 * 
 */
public class ContactsSyncAdapterService extends Service {
    private static final String TAG = "ContactsSyncAdapterService";

From source file com.rainmakerlabs.bleepsample.BleepService.java

public class BleepService extends Service {

    boolean oldcodeon = false;
    private static final String TAG = "BleepService";
    BLEepService thisBleepService;
    AlertDialog BLEalert;

From source file com.commonsware.android.webserver.WebServerService.java

abstract public class WebServerService extends Service {
    abstract protected void buildForegroundNotification(NotificationCompat.Builder b);

    abstract protected boolean configureRoutes(AsyncHttpServer server);

    abstract protected int getPort();