Example usage for android.content BroadcastReceiver subclass-usage

List of usage examples for android.content BroadcastReceiver subclass-usage

Introduction

In this page you can find the example usage for android.content BroadcastReceiver subclass-usage.

Usage

From source file com.phonegap.plugins.speech.LanguageDetailsChecker.java

public class LanguageDetailsChecker extends BroadcastReceiver {
    private List<String> supportedLanguages;
    private CallbackContext callbackContext;

    public LanguageDetailsChecker(CallbackContext callbackContext) {
        super();

From source file co.vanir.indecentxposure.IndecentXposure.java

public class IndecentXposure extends BroadcastReceiver {

    private static IndecentXposure _instance;

    public IndecentXposure() {
        super();

From source file ca.hoogit.garagepi.Controls.Doors.java

/**
 * Created by jordon on 29/02/16.
 * Singleton to listen for {@link DoorControlService#startActionQuery(Context)} query broadcast
 */
public class Doors extends BroadcastReceiver {

From source file com.onesignal.example.BackgroundDataBroadcastReceiver.java

public class BackgroundDataBroadcastReceiver extends BroadcastReceiver {

    // This onReceive will be call when a OneSignal Background Data Notification is received(before clicking) by the device.
    // You can read the additionalData and do anything you need here with it.
    // You may consider adding a wake lock here if you need to make sure the devices doesn't go to sleep while processing.
    // The following must also be in your AndroidManifest.xml for this to fire:

From source file com.corumgaz.mobilsayac.VoiceRecognizer.LanguageDetailsChecker.java

public class LanguageDetailsChecker extends BroadcastReceiver {
    private List<String> supportedLanguages;
    private CallbackContext callbackContext;

    public LanguageDetailsChecker(CallbackContext callbackContext) {
        super();

From source file com.android.settings.sim.SimSelectNotification.java

public class SimSelectNotification extends BroadcastReceiver {
    private static final String TAG = "SimSelectNotification";
    private static final int NOTIFICATION_ID = 1;

    @Override
    public void onReceive(Context context, Intent intent) {

From source file org.apache.cordova.nodialogspeechrecognizer.LanguageDetailsChecker.java

public class LanguageDetailsChecker extends BroadcastReceiver {
    private List<String> supportedLanguages;
    private CallbackContext callbackContext;

    public LanguageDetailsChecker(CallbackContext callbackContext) {
        super();

From source file net.tawacentral.roger.secrets.OnlineAgentManager.java

/**
 * Provides support for Online Sync Agents.
 * 
 * Sync process overview
 * 
 * On each resume a roll call is broadcast. Agents that respond are recorded in

From source file com.philliphsu.clock2.alarms.background.UpcomingAlarmReceiver.java

public class UpcomingAlarmReceiver extends BroadcastReceiver {
    private static final String TAG = "UpcomingAlarmReceiver";
    /*TOneverDO: not private*/
    private static final String ACTION_DISMISS_NOW = "com.philliphsu.clock2.action.DISMISS_NOW";

    public static final String ACTION_CANCEL_NOTIFICATION = "com.philliphsu.clock2.action.CANCEL_NOTIFICATION";

From source file org.wso2.iot.agent.events.listeners.KioskAppInstallationListener.java

public class KioskAppInstallationListener extends BroadcastReceiver {
    private static final String TAG = OperationManagerCOSU.class.getSimpleName();
    private DevicePolicyManager devicePolicyManager;
    private ComponentName cdmfDeviceAdmin;

    @RequiresApi(api = Build.VERSION_CODES.M)