Example usage for android.app IntentService subclass-usage

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

Introduction

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

Usage

From source file com.app.charlotte.myapplication.gcmpush.RegistrationIntentService.java

/**
 * Copyright 2015 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at

From source file com.andreadec.musicplayer.PodcastEpisodeDownloaderService.java

public class PodcastEpisodeDownloaderService extends IntentService {
    private final static int NOTIFICATION_INTERVAL = 1000; // Milliseconds
    private final static String STOP_DOWNLOAD_INTENT = "com.andreadec.musicplayer.stopdownload";
    private NotificationManager notificationManager;
    private NotificationCompat.Builder notificationBuilder;
    private PendingIntent stopDownloadPendingIntent;

From source file christensenjohnsrud.funfit.DetectedActivitiesIntentService.java

/**
 *  IntentService for handling incoming intents that are generated as a result of requesting
 *  activity updates using
 *  {@link com.google.android.gms.location.ActivityRecognitionApi#requestActivityUpdates}.
 */
public class DetectedActivitiesIntentService extends IntentService {

From source file com.irccloud.android.RemoteInputService.java

public class RemoteInputService extends IntentService {
    public static final String ACTION_REPLY = IRCCloudApplication.getInstance().getApplicationContext()
            .getString(R.string.ACTION_REPLY);

    public RemoteInputService() {
        super("RemoteInputService");

From source file com.savvywits.wethepeople.RESTService.java

public class RESTService extends IntentService {

    private static final String ZIP_CODE_BASE = "http://whoismyrepresentative.com/getall_mems.php?output=json&zip=";

    private static final int STATUS_RUNNING = 1;
    private static final int STATUS_FINISHED = 2;

From source file cl.chihau.holaauto.MessagingService.java

public class MessagingService extends IntentService {
    private static final String TAG = MessagingService.class.getSimpleName();

    public static final String SEND_MESSAGE_ACTION = "cl.chihau.holaauto.ACTION_SEND_MESSAGE";
    public static final String READ_ACTION = "cl.chihau.holaauto.ACTION_MESSAGE_READ";
    public static final String REPLY_ACTION = "cl.chihau.holaauto.ACTION_MESSAGE_REPLY";

From source file com.anypresence.android.notifications.gcm.RegistrationIntentService.java

public class RegistrationIntentService extends IntentService {

    private static final String TAG = "RegIntentService";

    public RegistrationIntentService() {
        super(TAG);

From source file anakiou.com.picontrol.service.EventLogIntentService.java

public class EventLogIntentService extends IntentService {

    private static final String TAG = "EventLogIntentService";

    private ResultReceiver receiver;

From source file org.catnut.service.UpgradeService.java

/**
 * ??
 *
 * @author longkai
 */
public class UpgradeService extends IntentService {

From source file com.camera.simplewebcam.push.GcmIntentService.java

/**
 * This {@code IntentService} does the actual handling of the GCM message.
 * {@code GcmBroadcastReceiver} (a {@code WakefulBroadcastReceiver}) holds a
 * partial wake lock for this service while the service does its work. When the
 * service is finished, it calls {@code completeWakefulIntent()} to release the
 * wake lock.