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 eu.chainfire.opendelta.UpdateService.java

public class UpdateService extends Service implements OnNetworkStateListener, OnBatteryStateListener,
        OnScreenStateListener, OnWantUpdateCheckListener, OnSharedPreferenceChangeListener {
    public static void start(Context context) {
        start(context, null);
    }

From source file eu.operando.operandoapp.service.ProxyService.java

/**
 * Created by nikos on 8/4/2016.
 */

public class ProxyService extends Service {

From source file biz.wiz.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.dopecoin.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.blu3f1re.reddwallet.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.hhunj.hhudata.ForegroundService.java

/**
 * This is an example of implementing an application service that can run in the
 * "foreground". It shows how to code this to work well by using the improved
 * Android 2.0 APIs when available and otherwise falling back to the original
 * APIs. Yes: you can take this exact code, compile it against the Android 2.0
 * SDK, and it will against everything down to Android 1.0.

From source file org.ohmage.reminders.types.location.LocTrigService.java

public class LocTrigService extends Service implements LocationListener {

    private static final String TAG = "LocTrigService";

    private static final String REMOTE_CLIENT_NAME = LocTrigService.class.getName() + ".remote_client";

From source file com.cannabiscoin.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 org.gaeproxy.GAEProxyService.java

public class GAEProxyService extends Service {

    public static final String BASE = "/data/data/org.gaeproxy/";
    final static String CMD_IPTABLES_RETURN = " -t nat -A OUTPUT -p tcp -d 0.0.0.0 -j RETURN\n";
    final static String CMD_IPTABLES_REDIRECT_ADD_HTTP = " -t nat -A OUTPUT -p tcp "
            + "--dport 80 -j REDIRECT --to 8123\n";

From source file org.ohmage.triggers.types.location.LocTrigService.java

public class LocTrigService extends Service implements LocationListener {

    private static final String DEBUG_TAG = "LocationTrigger";
    private static final String SYSTEM_LOG_TAG = "LocationTrigger";

    private static final String REMOTE_CLIENT_NAME = LocTrigService.class.getName() + ".remote_client";