List of usage examples for android.app Service subclass-usage
From source file com.amaze.filemanager.services.ZipTask.java
public class ZipTask extends Service { public final String EXTRACT_CONDITION = "ZIPPING"; public final String EXTRACT_PROGRESS = "ZIP_PROGRESS"; public final String EXTRACT_COMPLETED = "ZIP_COMPLETED"; Futils utils = new Futils();
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 com.authorwjf.bounce.BluetoothChat.java
/** * This is the main Activity that displays the current chat session. */ public class BluetoothChat extends Service { // Debugging private static final String TAG = "BluetoothChat";
From source file de.luhmer.owncloudnewsreader.services.OwnCloudSyncService.java
public class OwnCloudSyncService extends Service { protected static final String TAG = "OwnCloudSyncService"; private static RemoteCallbackList<IOwnCloudSyncServiceCallback> callbacks = new RemoteCallbackList<>();
From source file org.openplans.rcavl.LocationService.java
public class LocationService extends Service { public static final String INACTIVE = "inactive"; public static final String BREAK = "break"; public static final String ACTIVE = "active"; public static final String NOT_STARTED = "not started";
From source file com.quarterfull.newsAndroid.services.OwnCloudSyncService.java
public class OwnCloudSyncService extends Service { // This is the object that receives interactions from clients. See // RemoteService for a more complete example. private final IBinder mBinder = new OwnCloudSyncServiceBinder();
From source file com.digi.android.wva.VehicleInfoService.java
/**
* VehicleInfoService is a self-contained service created to facilitate easy
* integration with the Digi Wi-Fi Vehicle Bus Adapter (WVA). It is intended
* to be a started service which provides constant information from the WVA
* web service.
*
From source file org.physical_web.physicalweb.PwoDiscoveryService.java
/**
* This is a service that scans for nearby Physical Web Objects.
* It is created by MainActivity.
* It finds nearby ble beacons,
* and stores a count of them.
* It also listens for screen on/off events
From source file com.maass.android.imgur_uploader.ImgurUpload.java
public class ImgurUpload extends Service { private static final String THUMBNAIL_POSTFIX = ".thumb.jpg"; private static final int PROGRESS_UPDATE_INTERVAL_MS = 250; private static final int CHUNK_SIZE = 9000; private static final int READ_BUFFER_SIZE_BYTES = (3 * CHUNK_SIZE) / 4; private static final String API_KEY = "e67bb2d5ceb42e43f8f7fc38e7ca7376";
From source file butter.droid.base.torrent.TorrentService.java
public class TorrentService extends Service implements TorrentListener { public static final Integer NOTIFICATION_ID = 3423423; private static String WAKE_LOCK = "TorrentService_WakeLock";