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 de.tudarmstadt.dvs.myhealthassistant.myhealthhub.services.SystemMonitor.java

/**
 * Idea is that myHealthHub regularly (each 15mins!?) does a battery check and
 * the current GPS Location of the device and sends data to a Server. In case of
 * System Failure and the patient is in a critical condition, we can use those to
 * check for his last known location.
 * 

From source file at.aec.solutions.checkmkagent.AgentService.java

public class AgentService extends Service {
    protected static final String TAG = AgentService.class.getName();

    private static String NEWLINE = System.getProperty("line.separator");

    private Thread socketServerThread;

From source file at.ac.tuwien.detlef.gpodder.PodderService.java

/**
 * GPodder download service; performs gpodder.net requests and HTTP downloads in
 * the background. When bound, returns an {@link android.os.IBinder IBinder}
 * which can be turned into a {@link android.os.Messenger Messenger}. This
 * messenger accepts the <tt>DO_</tt> message codes from {@link MessageType} and
 * responds with the respective <tt>_DONE</tt> or <tt>_FAILED</tt> message

From source file at.bitfire.davdroid.DavService.java

public class DavService extends Service {

    public static final String ACTION_ACCOUNTS_UPDATED = "accountsUpdated",
            ACTION_REFRESH_COLLECTIONS = "refreshCollections", EXTRA_DAV_SERVICE_ID = "davServiceID";

    private final IBinder binder = new InfoBinder();

From source file jp.co.conit.sss.sp.ex1.billing.BillingService.java

/**
 * This class sends messages to Android Market on behalf of the application by
 * connecting (binding) to the MarketBillingService. The application creates an
 * instance of this class and invokes billing requests through this service. The
 * {@link BillingReceiver} class starts this service to process commands that it
 * receives from Android Market. You should modify and obfuscate this code

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

public class ExtractService extends Service {
    public final String EXTRACT_CONDITION = "EXTRACT_CONDITION";
    Futils utils = new Futils();

    Context cd;
    // Binder given to clients

From source file cn.studyjams.s2.sj0132.bowenyan.mygirlfriend.nononsenseapps.notepad.data.service.OrgSyncService.java

public class OrgSyncService extends Service {

    private static final String TAG = "OrgSyncService";

    public static final String ACTION_START = "cn.studyjams.s2.sj0132.bowenyan.mygirlfriend.nononsenseapps.notepad"
            + ".sync.START";

From source file com.igniva.filemanager.services.ExtractService.java

public class ExtractService extends Service {
    public final String EXTRACT_CONDITION = "EXTRACT_CONDITION";
    Futils utils = new Futils();

    Context cd;
    // Binder given to clients

From source file com.inloc.dr.StepService.java

/**
 * This is an example of implementing an application service that runs locally
 * in the same process as the application.  The {@link StepServiceController}
 * and {@link StepServiceBinding} classes show how to interact with the
 * service.
 *

From source file com.orange.oidc.secproxy_service.Service.java

/**
 * Openid Connect proxy service class
 *
 */
public class Service extends android.app.Service {