List of usage examples for android.app Service subclass-usage
From source file com.adityarathi.muo.services.AudioPlaybackService.java
/**
* The meat and potatoes of the entire app. Manages
* playback, equalizer effects, and all other audio
* related operations.
*
* @author Saravan Pantham
From source file com.android.exchange.SyncManager.java
/**
* The SyncManager handles all aspects of starting, maintaining, and stopping the various sync
* adapters used by Exchange. However, it is capable of handing any kind of email sync, and it
* would be appropriate to use for IMAP push, when that functionality is added to the Email
* application.
*
From source file com.andrew.apolloMod.service.ApolloService.java
public class ApolloService extends Service implements GetBitmapTask.OnBitmapReadyListener { /** * used to specify whether enqueue() should start playing the new list of * files right away, next or once all the currently queued files have been * played */
From source file com.mwebster.exchange.SyncManager.java
/**
* The SyncManager handles all aspects of starting, maintaining, and stopping the various sync
* adapters used by Exchange. However, it is capable of handing any kind of email sync, and it
* would be appropriate to use for IMAP push, when that functionality is added to the Email
* application.
*
From source file com.android.exchange.ExchangeService.java
/**
* The ExchangeService handles all aspects of starting, maintaining, and stopping the various sync
* adapters used by Exchange. However, it is capable of handing any kind of email sync, and it
* would be appropriate to use for IMAP push, when that functionality is added to the Email
* application.
*
From source file com.devalladolid.musictoday.MusicService.java
@SuppressLint("NewApi") public class MusicService extends Service { public static final String PLAYSTATE_CHANGED = "com.devalladolid.musictoday.playstatechanged"; public static final String POSITION_CHANGED = "com.devalladolid.musictoday.positionchanged"; public static final String META_CHANGED = "com.devalladolid.musictoday.metachanged"; public static final String QUEUE_CHANGED = "com.devalladolid.musictoday.queuechanged";
From source file com.piusvelte.sonet.SonetService.java
public class SonetService extends Service { private static final String TAG = "SonetService"; private final static HashMap<Integer, AsyncTask<Integer, String, Integer>> mStatusesLoaders = new HashMap<Integer, AsyncTask<Integer, String, Integer>>(); private final ArrayList<AsyncTask<SmsMessage, String, int[]>> mSMSLoaders = new ArrayList<AsyncTask<SmsMessage, String, int[]>>(); private AlarmManager mAlarmManager; private ConnectivityManager mConnectivityManager;
From source file com.Duo.music.player.Services.AudioPlaybackService.java
/**
* The meat and potatoes of the entire app. Manages
* playback, equalizer effects, and all other audio
* related operations.
*
* @author Saravan Pantham
From source file com.piusvelte.sonet.core.SonetService.java
public class SonetService extends Service { private static final String TAG = "SonetService"; private final static HashMap<Integer, AsyncTask<Integer, String, Integer>> mStatusesLoaders = new HashMap<Integer, AsyncTask<Integer, String, Integer>>(); private final ArrayList<AsyncTask<SmsMessage, String, int[]>> mSMSLoaders = new ArrayList<AsyncTask<SmsMessage, String, int[]>>(); private AlarmManager mAlarmManager; private ConnectivityManager mConnectivityManager;
From source file com.andrew.apollo.MusicPlaybackService.java
/** * A background {@link Service} used to keep music playing between activities * and when the user moves Apollo into the background. */ public class MusicPlaybackService extends Service { private static final Logger LOG = Logger.getLogger(MusicPlaybackService.class);