Example usage for android.app Service subclass-usage

List of usage examples for android.app Service subclass-usage

Introduction

In this page you can find the example usage for android.app Service subclass-usage.

Usage

From source file com.appdevkit.push.PushService.java

/**
 * Service which receives push notifications from AppDevKit.com.
 * 
 * Remember to add the following to your AndroidManifest.xml file:
 * 
 * <pre>

From source file com.BeatYourRecord.AssignmentSyncService.java

public class AssignmentSyncService extends Service {
    private static final String LOG_TAG = AssignmentSyncService.class.getSimpleName();

    private DbHelper dbHelper = null;

    private String ytdDomain = null;

From source file com.piggate.samples.PiggateLoginService.Service_Notify.java

public class Service_Notify extends Service {

    Piggate _piggate; //Create an object of the Piggate class
    static String notificationMsg = "Click to see the offer"; //Default message to show in the notification

    @Override

From source file ca.lightseed.winston.WinstonService.java

public class WinstonService extends Service {

    private LocationManager locationManager;
    private PowerManager.WakeLock wakeLock;

    /**

From source file com.dotd.mgrs.gps.MGRSLocationListener.java

public class MGRSLocationListener extends Service implements LocationListener {

    // Send the new location to the broadcast receiver for the service
    private void sendLocationBroadcast(MGRSLocation mgrs) {
        Intent intent = new Intent("MGRSlocation");
        intent.putExtra("location", mgrs.toString());

From source file com.allenxuan.xuanyihuang.littledownloadhelper.DownloadService.java

/**
 * Created by xuanyihuang on 08/03/2017.
 */

public class DownloadService extends Service {
    private DownloadTask downloadTask;

From source file com.notifry.android.UpdaterService.java

/**
 * Updater service.
 */
public class UpdaterService extends Service {
    @Override
    public IBinder onBind(Intent arg0) {

From source file com.github.secondsun.catfactsdemo.networking.CatFactFetcherService.java

public class CatFactFetcherService extends Service {

    public static final String FILTER_KEY = "CatFactService";
    public static final String RESET = "CatFactService.RESET";
    public static final String FACTS = "CatFactService.FACTS";
    public static final String LOAD = "CatFactService.START";

From source file csic.ceab.movelab.beepath.FileUploader.java

/**
 * Uploads files to the server.
 * 
 * @author John R.B. Palmer
 * 
 */

From source file com.android.settings.service.AlarmService.java

public class AlarmService extends Service {

    private static final int NOTI_ID = 286;

    private NotificationManager mManager;
    private MediaPlayer mMediaPlayer;