List of usage examples for android.app Service subclass-usage
From source file com.jcn.dlna.sdk.dms.httpserver.HttpServerServiceImpl.java
/** * @author Christian Bauer */ public class HttpServerServiceImpl extends Service { protected Binder binder = new Binder();
From source file androidx.core.app.NotificationCompatSideChannelService.java
/**
* Abstract service to receive side channel notifications sent from
* {@link androidx.core.app.NotificationManagerCompat}.
*
* <p>To receive side channel notifications, extend this service and register it in your
* android manifest with an intent filter for the BIND_NOTIFICATION_SIDE_CHANNEL action.
From source file com.allwinner.theatreplayer.launcher.service.UpdateService.java
public class UpdateService extends Service { private static UpdateService instance = null; static String TAG = "jim"; public static final String APKONCHECKED = "com.launcher.service.APKONCHECKED"; public static final String APKDOWNSUC = "com.launcher.service.APKDOWNSUC";
From source file com.Duo.music.player.Services.PinGMusicSongsService.java
public class PinGMusicSongsService extends Service { private Context mContext; public static Notification notification; public static NotificationManager mNotifyManager;
From source file com.prey.beta.services.PreyBetaRunnerService.java
/**
* This class wraps Prey execution as a services, allowing the OS to kill it and
* starting it again in case of low resources. This way we ensure Prey will be
* running until explicity stop it.
*
* @author Carlos Yaconi H.
From source file com.aniruddhc.acemusic.player.Services.PinGMusicSongsService.java
public class PinGMusicSongsService extends Service { private Context mContext; public static Notification notification; public static NotificationManager mNotifyManager;
From source file com.ddpclient.spiovesan.ddpclient.LogService.java
/** * * @author openmobster@gmail.com */ public class LogService extends Service implements LocationListener { private boolean isRunning = true;
From source file com.Duo.music.player.Services.AutoFetchAlbumArtService.java
public class AutoFetchAlbumArtService extends Service { private Context mContext; private SharedPreferences sharedPreferences; public static NotificationCompat.Builder builder; public static Notification notification;
From source file com.adam.aslfms.service.ForegroundHide.java
public class ForegroundHide extends Service { Context mCtx = this; @Override public IBinder onBind(Intent intent) {
From source file io.github.importre.android.chromeadb.ChromeAdbService.java
public class ChromeAdbService extends Service implements TailerListener { private File mEventFile = new File("/sdcard/chromeadb.event"); private ImageView mCursorImage; private String mPrevLine; private Tailer mTailer;