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 name.setup.dance.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.makotosan.vimeodroid.TransferService.java

public class TransferService extends Service {
    private static final String TAG = "TransferService";
    private int counter = 0;
    private NotificationManager notificationManager;
    private java.util.HashMap<Integer, Notification> notifications = new HashMap<Integer, Notification>();
    private final DecimalFormat numericFormatter = new DecimalFormat("#,###.#");

From source file com.digipom.manteresting.android.service.cache.CacheService.java

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

    private static final int EXECUTOR_CORE_POOL_SIZE = 1;
    private static final int EXECUTOR_MAXIMUM_POOL_SIZE = 5;
    private static final int EXECUTOR_KEEP_ALIVE = 30;

From source file com.ecocitizen.service.SensorMapUploaderService.java

public class SensorMapUploaderService extends Service {
    // Debugging
    private static final String TAG = "SensorMapUploaderService";
    private static final boolean D = false;

    private boolean shouldStartSession = true;

From source file com.nextgis.mobile.services.DataSendService.java

public class DataSendService extends Service {

    private SQLiteDatabase PositionDB;
    private PositionDatabase dbHelper;

    protected NetworkUtil networkUtil;

From source file com.cleanwiz.applock.service.LockService.java

/**
 * ???
 * 
 * @author btows
 * 
 */

From source file fr.bouyguestelecom.tv.bridge.bluemix.BluemixBridgeService.java

/**
 * @author Bertrand Martel
 */
public class BluemixBridgeService extends Service {

    private static final String TAG = BluemixBridgeService.class.getSimpleName();

From source file com.androcast.illusion.illusionmod.services.BootService.java

/**
 * Created by willi on 08.03.15.
 */
public class BootService extends Service {

    private final Handler hand = new Handler();

From source file com.filemanager.free.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 foam.zizim.android.BoskoiService.java

public class BoskoiService extends Service {
    public static final String PREFS_NAME = "BoskoiService";
    public static boolean httpRunning = false;
    public static final DefaultHttpClient httpclient = new DefaultHttpClient();
    public static Vector<String> mNewIncidentsImages = new Vector<String>();
    public static String incidentsResponse = "";