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 au.com.micropacific.cordova.DataReceiver.java

public class DataReceiver extends BroadcastReceiver {

    private ReaderManager mReaderManager;
    private CipherlabRS30Plugin plugin;

    public DataReceiver(CipherlabRS30Plugin _plugin, ReaderManager _ReaderManager) {

From source file com.fastbootmobile.rssdemo.PushReceiver.java

public class PushReceiver extends BroadcastReceiver {

    private static String TAG = "PushReceiver";

    private static int notification_num = 0; // Static counter for notification numbers

From source file com.chilliworks.chillisource.core.LocalNotificationReceiver.java

/**
 * Receives all local notifications.
 * 
 * @author Steven Hendrie
 */
public class LocalNotificationReceiver extends BroadcastReceiver {

From source file com.teinproductions.tein.papyrosprogress.UpdateCheckReceiver.java

public class UpdateCheckReceiver extends BroadcastReceiver {
    private static final int PROGRESS_NOTIFICATION_ID = 1;
    private static final int BLOG_NOTIFICATION_ID = 2;

    /**
     * Boolean Intent extra which specifies whether to also check

From source file org.kontalk.service.ServerListUpdater.java

/**
 * Worker for downloading and caching locally a server list.
 * This class doesn't need to be configured: it hides all the logic of picking
 * a random server, connecting to it, downloading the server list and saving it
 * in the application cache. Finally, it restarts the message center.
 * @author Daniele Ricci

From source file com.codename1.impl.android.LocalNotificationPublisher.java

/**
 *
 * @author Chen
 */
public class LocalNotificationPublisher extends BroadcastReceiver {

From source file androidx.media.session.MediaButtonReceiver.java

/**
 * A media button receiver receives and helps translate hardware media playback buttons, such as
 * those found on wired and wireless headsets, into the appropriate callbacks in your app.
 * <p />
 * You can add this MediaButtonReceiver to your app by adding it directly to your
 * AndroidManifest.xml:

From source file com.csipsimple.plugins.twvoip.CallHandler.java

public class CallHandler extends BroadcastReceiver {

    private static final String THIS_FILE = "CH TWVOIP";
    public static final String ACTION_GET_PHONE_HANDLERS = "com.csipsimple.phone.action.HANDLE_CALL";
    public static final String ACTION_DO_TWVOIP_CALL = "com.csipsimple.plugins.twvoip.ACTION_DO_TWVOIP_CALL";

From source file com.klinker.deskclock.timer.TimerReceiver.java

public class TimerReceiver extends BroadcastReceiver {
    private static final String TAG = "TimerReceiver";

    // Make this a large number to avoid the alarm ID's which seem to be 1, 2, ...
    // Must also be different than StopwatchService.NOTIFICATION_ID
    private static final int IN_USE_NOTIFICATION_ID = Integer.MAX_VALUE - 2;

From source file com.numberx.kkmctimer.timer.TimerReceiver.java

public class TimerReceiver extends BroadcastReceiver {
    private static final String TAG = "TimerReceiver";

    // Make this a large number to avoid the alarm ID's which seem to be 1, 2, ...
    // Must also be different than StopwatchService.NOTIFICATION_ID
    private static final int IN_USE_NOTIFICATION_ID = Integer.MAX_VALUE - 2;