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.mobiperf.MeasurementScheduler.java

    // This arbitrary id is private to Speedometer
    private static final int NOTIFICATION_ID = 1234;

    private ExecutorService measurementExecutor;
    private BroadcastReceiver broadcastReceiver;
    private Boolean pauseRequested = true;

From source file com.android.camera2.its.ItsService.java

public class ItsService extends Service implements SensorEventListener {
    public static final String TAG = ItsService.class.getSimpleName();

    // Timeouts, in seconds.
    public static final int TIMEOUT_CALLBACK = 3;
    public static final int TIMEOUT_3A = 10;

From source file com.bonsai.wallet32.WalletService.java

public class WalletService extends Service implements OnSharedPreferenceChangeListener {

    public static boolean mIsRunning = false;

    private static Logger mLogger = LoggerFactory.getLogger(WalletService.class);

From source file com.appsimobile.appsii.Appsi.java

/**
 * Appsii's main service.
 * <p/>
 * To see the status: adb shell dumpsys activity services com.appsimobile.appsii
 */
public class Appsi extends Service implements OnSharedPreferenceChangeListener, HotspotHelperListener,

From source file org.linphone.LinphoneService.java

public class LinphoneService extends Service implements LinphoneCoreListener {
    static final public String TAG = "Linphone";
    /** Called when the activity is first created. */
    private static String LINPHONE_FACTORY_RC = "/data/data/org.linphone/files/linphonerc";
    private static String LINPHONE_RC = "/data/data/org.linphone/files/.linphonerc";
    private static String RING_SND = "/data/data/org.linphone/files/oldphone_mono.wav";

From source file com.bushstar.htmlcoin_android_wallet.service.BlockchainServiceImpl.java

/**
 * @author Andreas Schildbach
 */
public class BlockchainServiceImpl extends android.app.Service implements BlockchainService {
    private WalletApplication application;
    private Configuration config;

From source file com.bushstar.kobocoin_android_wallet.service.BlockchainServiceImpl.java

/**
 * @author Andreas Schildbach
 */
public class BlockchainServiceImpl extends android.app.Service implements BlockchainService {
    private WalletApplication application;
    private Configuration config;

From source file com.halseyburgund.rwframework.core.RWService.java

import com.halseyburgund.rwframework.util.RWSharedPrefsHelper;

/**
 * Service for background playback of Roundware sound stream and handle the
 * various server calls. Calls can either be queued that is checked at a
 * regular interval, or sent directly. 

From source file cc.mintcoin.wallet.service.BlockchainServiceImpl.java

/**
 * @author Andreas Schildbach
 */
public class BlockchainServiceImpl extends android.app.Service implements BlockchainService {
    private WalletApplication application;
    private Configuration config;

From source file com.xorcode.andtweet.AndTweetService.java

/**
 * This is an application service that serves as a connection between Android
 * and Twitter. Other applications can interact with it via IPC.
 */
public class AndTweetService extends Service {
    private static final String TAG = AndTweetService.class.getSimpleName();