List of usage examples for android.app Service subclass-usage
From source file edu.cmu.sei.cloudlet.client.ska.adb.InDataService.java
public class InDataService extends Service { private final String TAG = "InDataService"; // This will handle data received. private IInDataHandler mDataHandler;
From source file edu.cmu.sei.cloudlet.client.ska.adb.OutDataService.java
public class OutDataService extends Service { private final String TAG = "OutDataService"; // This gets the data requested. private IOutDataHandler mDataHandler;
From source file org.andicar.service.UpdateCheckService.java
public class UpdateCheckService extends Service { NotificationManager mNM = null; Notification notification = null; @Override public IBinder onBind(Intent arg0) {
From source file com.apexlabs.alarm.AlarmService.java
public class AlarmService extends Service { private static final String TAG = "MyService"; NotificationCompat.Builder mBuilder; NotificationManager mNotificationManager; int mId; boolean notificationPosted = false;
From source file edu.nyu.cs.omnidroid.app.controller.external.actions.GMailService.java
/** * This service can be used to send a GMail when receiving an intent created by * {@link SendGmailAction}. It utilize a SMTP library from Apache Commons project. */ public class GMailService extends Service {
From source file com.keithandthegirl.services.UpdateCalendarService.java
/** * @author Daniel Frey * */ public class UpdateCalendarService extends Service {
From source file com.openerp.services.MeetingSyncService.java
public class MeetingSyncService extends Service { /** The sync broadcast helper. */ private static SyncAdapterImpl sSyncAdapter = null; Context context = null; MeetingDBHelper db = null; OECalendar calendar = null;
From source file co.codecrunch.musicplayerlite.manager.MusicPlayerService.java
public class MusicPlayerService extends Service implements AudioManager.OnAudioFocusChangeListener, NotificationManager.NotificationCenterDelegate { public static final String NOTIFY_PREVIOUS = "musicplayer.previous"; public static final String NOTIFY_CLOSE = "musicplayer.close"; public static final String NOTIFY_PAUSE = "musicplayer.pause";
From source file de.appplant.cordova.plugin.background.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 com.openerp.services.MailGroupSyncService.java
public class MailGroupSyncService extends Service { public static final String TAG = "com.openerp.services.MailGroupSyncService"; private static SyncAdapterImpl sSyncAdapter = null; static int i = 0; Context mContext = null;