List of usage examples for android.app Service subclass-usage
From source file org.lyricue.android.LyricueDisplay.java
public class LyricueDisplay extends Service { private final String TAG = "Lyricue"; private HostItem[] hosts = null; public LyricueDisplay() {
From source file at.univie.sensorium.SensorService.java
public class SensorService extends Service { private SensorRegistry registry; private static final int NOTIFICATION = 42; private final IBinder mBinder = new LocalBinder(); @Override
From source file bala.padio.Player.java
public class Player extends Service implements MediaPlayer.OnPreparedListener, MediaPlayer.OnErrorListener, AudioManager.OnAudioFocusChangeListener { public final static String PlayerStatusBroadcast = "player.status.name"; public final static String PlayerStatusMessage = "status"; private final static String TAG = "Player";
From source file com.newtifry.android.UpdaterService.java
public class UpdaterService extends Service { private UpdaterService thisService = this; // private PowerManager.WakeLock wakelock = null; @Override public IBinder onBind(Intent arg0) {
From source file at.bitfire.davdroid.syncadapter.SyncAdapterService.java
public abstract class SyncAdapterService extends Service { abstract protected AbstractThreadedSyncAdapter syncAdapter(); @Nullable @Override
From source file com.armtimes.downloaders.ArticleInfoDownloaderService.java
public final class ArticleInfoDownloaderService extends Service implements ArticleInfoDownloader.ArticleInfoDownloaderListener { private final static String TAG = ArticleInfoDownloaderService.class.getSimpleName(); public final static String EXTRA_CATEGORY = "CATEGORY";
From source file com.SmartDial.ForegroundService.java
/** * Puts the service in a foreground state, where the system considers it to be * something the user is actively aware of and thus not a candidate for killing * when low on memory. */ public class ForegroundService extends Service {
From source file jp.co.ipublishing.aeskit.shelter.ShelterService.java
/** * ? */ public class ShelterService extends Service { private static final String TAG = "ShelterService";
From source file net.kayateia.lifestream.UploadService.java
public class UploadService extends Service { private static final String LOG_TAG = "LifeStream/UploadService"; private static final int NOTIFY_ID = 79; private static final int WAKELOCK_TIMEOUT = 60000; private static final String NOTIFICATION_THUMBNAIL_PATH = Media.BASE_DIR + "/tempthumb"; private File _storagePath, _tempThumbPath;
From source file com.github.dfa.diaspora_android.task.GetPodsService.java
public static final String MESSAGE_PODS_RECEIVED = "com.github.dfa.diaspora.podsreceived"; public GetPodsService() { } @Override