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.tenforwardconsulting.cordova.bgloc.AbstractLocationService.java

public abstract class AbstractLocationService extends Service {
    private static final String TAG = "AbstractLocationService";

    protected Config config;
    protected String activity;

From source file jp.co.ipublishing.aeskit.alert.AlertService.java

/**
 * ?
 */
@SuppressLint("Registered")
public class AlertService extends Service {
    private static final String TAG = "AlertService";

From source file com.vinidsl.googleioextended.service.SynchroService.java

public class SynchroService extends Service {

    public SynchroService() {
        super.onCreate();
    }

From source file com.ushahidi.android.app.UshahidiService.java

public class UshahidiService extends Service {

    private TimerTask mDoTask;

    private Timer mT = new Timer();

From source file com.android.settings.cmstats.ReportingService.java

public class ReportingService extends Service {
    /* package */ static final String TAG = "CMStats";

    private StatsUploadTask mTask;

    @Override

From source file samples.piggate.com.piggateInfoDemo.Service_Notify.java

public class Service_Notify extends Service {

    Piggate _piggate; //Create an object of the Piggate class
    static String defaultTitle = "New information!"; //Default title to show in the notification
    static String defaultMsg = "Click to see the complete content"; //Default message to show in the notification
    static String notificationtitle = "";

From source file com.awt.supark.ParkingTimerService.java

public class ParkingTimerService extends Service {
    private static final int TIMER_PERIOD = 60000;
    private static final String ACTION_CANCEL = "com.awt.supark.ParkingTimerService.ACTION_CANCEL";
    private static final String ACTION_RENEW = "com.awt.supark.ParkingTimerService.ACTION_RENEW";

    SharedPreferences sharedPreferences;

From source file cc.softwarefactory.lokki.android.services.LocationService.java

public class LocationService extends Service implements LocationListener, GoogleApiClient.ConnectionCallbacks,
        GoogleApiClient.OnConnectionFailedListener {

    // INTERVALS
    private static final long INTERVAL_10_MS = 10;
    private static final long INTERVAL_30_SECS = 30 * 1000;

From source file samples.piggate.com.piggateCompleteExample.Service_Notify.java

public class Service_Notify extends Service {

    Piggate _piggate; //Create an object of the Piggate class
    static String defaultTitle = "New offers!"; //Default title to show in the notification
    static String defaultMsg = "Click to see the offers"; //Default message to show in the notification
    static String notificationtitle = "";

From source file org.bfr.periodicquery.PeriodicQueryService.java

public class PeriodicQueryService extends Service {

    // Maximum time to keep a wake lock in ms 
    private static long wakeLockTimeOut = 10 * 1000;

    // Binder so Activities can bind this service.