List of usage examples for android.app Service subclass-usage
From source file com.aniruddhc.acemusic.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.bluros.music.MusicService.java
@SuppressLint("NewApi") public class MusicService extends Service { public static final String PLAYSTATE_CHANGED = "com.bluros.music.playstatechanged"; public static final String POSITION_CHANGED = "com.bluros.music.positionchanged"; public static final String META_CHANGED = "com.bluros.music.metachanged"; public static final String QUEUE_CHANGED = "com.bluros.music.queuechanged";
From source file com.shafiq.myfeedle.core.MyfeedleService.java
public class MyfeedleService extends Service { private static final String TAG = "MyfeedleService"; 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 co.beem.project.beem.FbTextService.java
/**
* This class is for the Beem service. It must contains every global
* informations needed to maintain the background service. The connection to the
* xmpp server will be made asynchronously when the service will start.
*
* @author darisk
From source file com.cyanogenmod.eleven.MusicPlaybackService.java
/** * A backbround {@link Service} used to keep music playing between activities * and when the user moves Apollo into the background. */ @SuppressLint("NewApi") public class MusicPlaybackService extends Service {
From source file com.av.remusic.service.MediaService.java
@SuppressLint("NewApi") public class MediaService extends Service { public static final String PLAYSTATE_CHANGED = "com.av.remusic.playstatechanged"; public static final String POSITION_CHANGED = "com.av.remusic.positionchanged"; public static final String META_CHANGED = "com.av.remusic.metachanged"; public static final String PLAYLIST_ITEM_MOVED = "com.av.remusic.mmoved";
From source file com.cloud9.netmusic.service.MediaService.java
@SuppressLint("NewApi") public class MediaService extends Service { public static final String PLAYSTATE_CHANGED = "com.cloud9.netmusic.playstatechanged"; public static final String POSITION_CHANGED = "com.cloud9.netmusic.positionchanged"; public static final String META_CHANGED = "com.cloud9.netmusic.metachanged"; public static final String PLAYLIST_ITEM_MOVED = "com.cloud9.netmusic.mmoved";
From source file com.dwdesign.tweetings.service.TweetingsService.java
public class TweetingsService extends Service implements Constants { private final ServiceStub mBinder = new ServiceStub(this); private AsyncTaskManager mAsyncTaskManager; private SharedPreferences mPreferences;
From source file org.androidannotations.annotations.HttpsClient.java
@EService public class ServiceWithInvalidReceiver extends Service { diff --git a/AndroidAnnotations/androidannotations/src/test/java/org/androidannotations/receiver/ServiceWithValidReceiver.java b/AndroidAnnotations/androidannotations/src/test/java/org/androidannotations/receiver/ServiceWithValidReceiver.java index 4b7a1ee..1147075 100644 --- a/AndroidAnnotations/androidannotations/src/test/java/org/androidannotations/receiver/ServiceWithValidReceiver.java +++ b/AndroidAnnotations/androidannotations/src/test/java/org/androidannotations/receiver/ServiceWithValidReceiver.java