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.orange.oidc.tim.service.Service.java

/**
 * Openid Connect proxy service class
 *
 */
public class Service extends android.app.Service implements SEService.CallBack {

From source file at.maui.cheapcast.service.CheapCastService.java

public class CheapCastService extends Service {

    public static final String LOG_TAG = "CheapCastService";
    private NotificationManager mNotificationManager;
    private HashMap<String, App> mRegisteredApps;

From source file eu.operando.proxy.service.ProxyService.java

/**
 * Created by nikos on 8/4/2016.
 */

public class ProxyService extends Service {

From source file cm.aptoide.pt.services.ServiceDownloadManager.java

/**
 * ServiceDownloadManager, manages interaction between interface classes and services
 *
 * @author dsilveira
 *
 */

From source file kr.ac.kaist.resl.sensorservice.BluetoothService.java

public class BluetoothService extends Service {

    private DeviceScanner scanner;
    private BluetoothAdapter mBluetoothAdapter;

    private final static String TAG = "MIO";

From source file com.darshancomputing.BatteryIndicatorPro.BatteryInfoService.java

public class BatteryInfoService extends Service {
    private final IntentFilter batteryChanged = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
    private final IntentFilter userPresent = new IntentFilter(Intent.ACTION_USER_PRESENT);
    private PendingIntent currentInfoPendingIntent, updatePredictorPendingIntent, alarmsPendingIntent;

    private NotificationManagerCompat mNotificationManager;

From source file nya.miku.wishmaster.ui.tabs.TabsTrackerService.java

/**
 * ? ?
 * @author miku-nyan
 *
 */
public class TabsTrackerService extends Service {

From source file com.nttec.everychan.ui.tabs.TabsTrackerService.java

/**
 * ? ?
 * @author miku-nyan
 *
 */
public class TabsTrackerService extends Service {

From source file com.ac.vct.pharmacylog.services.IMService.java

/**
 * This is an example of implementing an application service that runs locally
 * in the same process as the application.  The {@link LocalServiceController}
 * and {@link LocalServiceBinding} classes show how to interact with the
 * service.
 *

From source file co.shunya.gita.player.MusicService.java

/**
 * Service that handles media playback. This is the Service through which we perform all the media
 * handling in our application. Upon initialization, it starts a {@link MusicRetriever} to scan
 * the user's media. Then, it waits for Intents (which come from our main activity,
 * {@link MainActivity}, which signal the service to perform specific operations: Play, Pause,
 * Rewind, Skip, etc.