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.digitalcampus.oppia.service.TrackerService.java

public class TrackerService extends Service implements APIRequestListener {

    public static final String TAG = TrackerService.class.getSimpleName();

    private final IBinder mBinder = new MyBinder();
    private SharedPreferences prefs;

From source file com.example.android.bluetoothlegatt.BluetoothLeService.java

/**
 * Service for managing connection and data communication with a GATT server hosted on a
 * given Bluetooth LE device.
 */
public class BluetoothLeService extends Service {
    private final static String TAG = BluetoothLeService.class.getSimpleName();

From source file etsii_upm.obdii.EnviarService.java

public class EnviarService extends Service {

    // Interface for clients that bind
    private IBinder mBinder = new MyBinder();
    private Messenger messenger;

From source file cm.aptoide.pt.DownloadQueueService.java

public class DownloadQueueService extends Service {

    private final static int KBYTES_TO_BYTES = 1024;

    private HashMap<Integer, HashMap<String, String>> notifications;

From source file com.grass.caishi.cc.service.BaseIntentService.java

public class BaseIntentService extends Service {
    private volatile Looper mServiceLooper;
    private static volatile ServiceHandler mServiceHandler;
    private String mName = "BaseIntentService";

    public static String BroadCastName = "com.grassweb.caishi.toupiao";

From source file com.android.aim.services.IMService.java

public class IMService extends Service implements IAppManager, IUpdateData {

    public static String USERNAME;
    public static final String TAKE_MESSAGE = "Take_Message";
    public static final String FRIEND_LIST_UPDATED = "Take Friend List";
    public static final String MESSAGE_LIST_UPDATED = "Take Message List";

From source file de.tudarmstadt.dvs.myhealthassistant.myhealthhub.services.transformationmanager.services.FelixService.java

public class FelixService extends Service implements IFelixServiceBinder {

    // for debugging
    private static final String TAG = "FelixService";
    private static final boolean D = false;

From source file org.cm.podd.report.util.RequestDataUtil.java

public class RequestDataUtil extends Service {

    private static final String TAG = "RequestDataUtil";
    private static Charset utf8Charset = Charset.forName("UTF-8");

    private static SharedPreferences settings = PoddApplication.getAppContext()

From source file com.android.managedprovisioning.DeviceOwnerProvisioningService.java

/**
 * This service does the work for the DeviceOwnerProvisioningActivity.
 * Feedback is sent back to the activity via intents.
 *
 * <p>
 * If the corresponding activity is killed and restarted, the service is

From source file com.qi.airstat.BluetoothLeService.java

/**
 * Service for managing connection and data communication with a GATT server hosted on a
 * given Bluetooth LE device.
 */
public class BluetoothLeService extends Service {
    private final static String TAG = BluetoothLeService.class.getSimpleName();