List of usage examples for android.app Service subclass-usage
From source file at.andreasrohner.spartantimelapserec.BackgroundService.java
public class BackgroundService extends Service implements SurfaceHolder.Callback, Handler.Callback { private static final String TAG = "BackgroundService"; private static final int NOTIFICATION_ID = 95430432; private static boolean created; private SurfaceView surfaceView; private WakeLock wakeLock;
From source file com.android.contacts.SimImportService.java
/** * Imports {@link SimContact}s from a background thread */ public class SimImportService extends Service { private static final String TAG = "SimImportService";
From source file com.cqupt.pedometer.main.UartService.java
/** * Service for managing connection and data communication with a GATT server hosted on a * given Bluetooth LE device. */ public class UartService extends Service { private final static String TAG = "SmartLock";
From source file au.com.smarttrace.beacons.BluetoothService.java
/**
* <p>
* Bluetooth LE devices discovery service
*
* <p>
*
From source file com.alex.vmandroid.services.RecordDBService.java
/** * ?????? */ public class RecordDBService extends Service implements AMapLocationListener { private static final String TAG = RecordDBService.class.getName();
From source file com.piusvelte.sonet.PhotoUploadService.java
public class PhotoUploadService extends Service { private static final String TAG = "PhotoUploadService"; private SonetCrypto mSonetCrypto; private int mStartId = Sonet.INVALID_SERVICE; @Override
From source file com.commonsware.android.webserver.secure.WebServerService.java
public class WebServerService extends Service { private static final int MAX_IDLE_TIME_SECONDS = 60; private static final int MAX_SEQUENTIAL_INVALID_REQUESTS = 10; private AsyncHttpServer server; private SecureRandom rng = new SecureRandom(); private String rootPath;
From source file com.telepromptu.TeleprompterService.java
/** * Service owning the LiveCard living in the timeline. */ public class TeleprompterService extends Service { private static final String TAG = "TeleprompterService";
From source file org.chirpradio.mobile.PlaybackService.java
public class PlaybackService extends Service implements OnPreparedListener, OnErrorListener, OnCompletionListener { // This URL redirects to the real stream URL. private static final String STREAM_URL = "http://chirpradio.org/stream"; private MediaPlayer mediaPlayer;
From source file com.github.play.app.StatusService.java
/** * Service to receive push notifications about the currently playing song and * queued songs */ public class StatusService extends Service {