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.cn21.speedtest.service.LogService.java

public class LogService extends Service implements SharedPreferences.OnSharedPreferenceChangeListener {

    public static final String ACTION_ROOT_FAILED = "com.readystatesoftware.ghostlog.ROOT_FAILED";

    private static final String TAG = "LogService";
    private static final int LOG_BUFFER_LIMIT = 2000;

From source file ca.spencerelliott.mercury.ChangesetService.java

public class ChangesetService extends Service {
    //Constants for the index of the different repositories
    private final static int REPO_HGSERVE = 0;
    private final static int REPO_GOOGLECODE = 1;
    private final static int REPO_BITBUCKET = 2;
    private final static int REPO_CODEPLEX = 3;

From source file jp.maju.wifiserver.client.ClientService.java

public class ClientService extends Service implements OnStateListener {
    private static final String TAG = ClientService.class.getSimpleName();

    private static final int NOTIFICATION_ID = 0x34;

    private ConnectionObserver mClientObserver;

From source file com.adam.aslfms.service.ScrobblingService.java

/**
 * @author tgwizard
 */
public class ScrobblingService extends Service {

    private static final String TAG = "ScrobblingService";

From source file info.snowhow.plugin.RecorderService.java

public class RecorderService extends Service {
    private static final String GPS_TRACK_VERSION = "0.2.1";

    private static final String LOG_TAG = "GPSTrack";
    private static final long MINIMUM_DISTANCE_CHANGE_FOR_UPDATES = 10; // in Meters
    private static final long MINIMUM_TIME_BETWEEN_UPDATES = 5000; // in Milliseconds

From source file com.example.android.alertbuddy.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 at.vcity.androidim.services.IMService.java

import at.vcity.androidim.tools.LocalStorageHandler;
import at.vcity.androidim.tools.MessageController;
import at.vcity.androidim.tools.XMLHandler;
import at.vcity.androidim.types.FriendInfo;
import at.vcity.androidim.types.MessageInfo;

From source file com.darshancomputing.alockblock.ALockBlockService.java

public class ALockBlockService extends Service {
    private final IntentFilter userPresent = new IntentFilter(Intent.ACTION_USER_PRESENT);
    private PendingIntent mainWindowPendingIntent;
    private PendingIntent updatePredictorPendingIntent;
    private Intent alarmsIntent;

From source file de.tudresden.inf.rn.mobilis.clientservices.socialnetwork.SocialNetworkService.java

/**
 * @author Robert Lbke
 */
public class SocialNetworkService extends Service {

    private static final String TAG = "SocialNetworkService";

From source file com.trellmor.berrytube.BerryTube.java

/**
 * BerryTube handles to communication with the BerryTube Server and provides
 * synchronous callbacks for an UI application.
 * 
 * This is an android service intended to run in the same process as the main
 * application