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 br.com.viniciuscr.notification2android.mediaPlayer.MediaPlaybackService.java

/**
 * Provides "background" audio playback capabilities, allowing the
 * user to switch between activities without stopping playback.
 */
public class MediaPlaybackService extends Service {
    /**

From source file net.kidlogger.kidlogger.KLService.java

public class KLService extends Service {
    public static final String PREF_NAME = "net.tesline.service.KLService";
    public static final String SMS_RECEIVED = "android.provider.Telephony.SMS_RECEIVED";
    public static final String OUTGOING_CALL = "net.tesline.service.OUTGOING_CALL";
    public static final String ALARM_ACTION = "net.tesline.service.SEND_DATA";
    public static String INTENT_NUMBER = "*123456#";

From source file org.csp.everyaware.internet.StoreAndForwardService.java

public class StoreAndForwardService extends Service {
    private Handler mHandler;
    private boolean mConnectivityOn;
    private DbManager mDbManager;
    private List<Record> mToSendRecords;
    private List<Record> mAllLoadedRecords;

From source file androidx.media.MediaBrowserServiceCompat.java

/**
 * Base class for media browse services.
 * <p>
 * Media browse services enable applications to browse media content provided by an application
 * and ask the application to start playing it. They may also be used to control content that
 * is already playing by way of a {@link MediaSessionCompat}.

From source file me.spadival.podmode.PodModeService.java

public class PodModeService extends Service
        implements Runnable, OnCompletionListener, OnPreparedListener, OnErrorListener, MusicFocusable,
        OnSharedPreferenceChangeListener, PrepareMusicRetrieverTask.MusicRetrieverPreparedListener {

    final static String TAG = "PodModeService";
    final static String PACKAGENAME = "me.spadival.podmode";

From source file mp.teardrop.PlaybackService.java

/**
 * Handles music playback and pretty much all the other work.
 */
public final class PlaybackService extends Service
        implements Handler.Callback, MediaPlayer.OnCompletionListener, MediaPlayer.OnErrorListener,
        MediaPlayer.OnPreparedListener, SharedPreferences.OnSharedPreferenceChangeListener, SongTimeline.Callback,

From source file RhodesService.java

public class RhodesService extends Service {

    private static final String TAG = RhodesService.class.getSimpleName();

    private static final boolean DEBUG = false;

From source file com.chen.emailsync.SyncManager.java

/**
 * The SyncServiceManager handles the lifecycle of various sync adapters used by services that
 * cannot rely on the system SyncManager
 *
 * SyncServiceManager uses ContentObservers to detect changes to accounts, mailboxes, & messages in
 * order to maintain proper 2-way syncing of data.  (More documentation to follow)

From source file co.beem.project.beem.FacebookTextService.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.csipsimple.service.SipService.java

public class SipService extends Service {

    // static boolean creating = false;
    private static final String THIS_FILE = "SIP SRV";

    private SipWakeLock sipWakeLock;