List of usage examples for android.app Service subclass-usage
From source file tv.acfun.a63.service.PushService.java
/** * @author Yrom * */ public class PushService extends Service { public static final String ACTION_REFRESH = "tv.acfun.action.REFRESH";
From source file androidx.media.MediaSessionService2.java
/**
* @hide
* Base class for media session services, which is the service version of the {@link MediaSession2}.
* <p>
* It's highly recommended for an app to use this instead of {@link MediaSession2} if it wants
* to keep media playback in the background.
From source file eu.andlabs.studiolounge.gcp.GCPService.java
/**
* <p>
* The {@link eu.andlabs.studiolounge.gcp.GCPService GCPService} background
* system service acts like a router, forwarding and translating messages
* between online nodes and Mobile Apps. It sends and receives <a href=
* "https://github.com/ANDLABS-Git/studio-lounge-node/blob/master/spec/protocol.coffee"
From source file com.google.blockly.android.codegen.CodeGeneratorService.java
/** * Background service that uses a WebView to statically load the Web Blockly libraries and use them * to generate code. */ public class CodeGeneratorService extends Service { private static final String TAG = "CodeGeneratorService";
From source file com.doctoror.fuckoffmusicplayer.presentation.playback.PlaybackAndroidService.java
/** * Media playback Service */ public final class PlaybackAndroidService extends Service { static final String ACTION_RESEND_STATE = "ACTION_RESEND_STATE";
From source file com.brucegiese.perfectposture.OrientationService.java
/**
* This class provides a Service for tracking the user device's orientation periodically.
* It notifies the user when they are outside of the range parameters for tilt orientation.
* It keeps track of metrics which can be fetched. It allows for changing the various
* configuration parameters while the service is running.
*
From source file com.openerp.services.UserGroupsSyncService.java
/** * The Class UserGroupsSyncService. */ public class UserGroupsSyncService extends Service { /** The Constant TAG. */
From source file cm.aptoide.pt.services.MainService.java
public class MainService extends Service { // Database db; private static boolean isParsing = false; String defaultPath = Environment.getExternalStorageDirectory().getAbsolutePath(); String defaultXmlPath = defaultPath + "/.aptoide/info.xml"; String defaultTopXmlPath = defaultPath + "/.aptoide/top.xml";
From source file com.example.alan.bikelog.UartService.java
/** * Service for managing connection and data communication with a GATT server hosted on a * given Bluetooth LE device. */ public class UartService extends Service { private final static String TAG = UartService.class.getSimpleName();
From source file com.example.alexanderbolinsky.ble_uart_remote.UartService.java
/** * Service for managing connection and data communication with a GATT server hosted on a * given Bluetooth LE device. */ public class UartService extends Service { private final static String TAG = UartService.class.getSimpleName();