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.parse.ParsePushBroadcastReceiver.java

/**
 * A {@link BroadcastReceiver} for rendering and reacting to to Notifications.
 * <p/>
 * This {@link BroadcastReceiver} must be registered in order to use the {@link ParsePush}
 * subscription methods. As a security precaution, the intent filters for this
 * {@link BroadcastReceiver} must not be exported. Add the following lines to your

From source file com.juick.android.XMPPMessageReceiver.java

/**
 *
 */
public class XMPPMessageReceiver extends BroadcastReceiver {

    interface MessageReceiverListener {

From source file com.android.systemui.ReminderReceiver.java

public class ReminderReceiver extends BroadcastReceiver {

    private static final String KEY_REMINDER_ACTION = "key_reminder_action";

    private static final int NOTI_ID = 254;

From source file org.smap.smapTask.android.receivers.LocationChangedReceiver.java

/**
 * This Receiver class is used to listen for Broadcast Intents that announce
 * that a location change has occurred. This is used instead of a LocationListener
 * within an Activity is our only action is to start a service.
 */
public class LocationChangedReceiver extends BroadcastReceiver {

From source file org.durka.hallmonitor.CoreReceiver.java

public class CoreReceiver extends BroadcastReceiver {

    private final String LOG_TAG = "Hall.CR";

    private CoreStateManager mStateManager;
    private Context localContext;

From source file com.xperia64.cosi.NagReceiver.java

public class NagReceiver extends BroadcastReceiver {
    final static int REQUEST_CODE = 0xf00ba;

    @Override
    public void onReceive(Context context, Intent intent) {
        new NagTask().execute(context);

From source file damo.three.ie.prepay.InternetAddonAlarmManagerReceiver.java

/**
 * This class is executed when the phone boots up to set internet add-on expiring alarms. As alarms aren't
 * persisted across reboots on Android.
 */
public class InternetAddonAlarmManagerReceiver extends BroadcastReceiver {

From source file mobile.client.iot.pzalejko.iothome.mqtt.event.InEventReceiver.java

/**
 * The {@link InEventReceiver} is responsible for handling events sent from the remove server(broker) to the android application. Depending
 * on the event type and its payload UI components will updated respectively.
 */
public class InEventReceiver extends BroadcastReceiver {

From source file com.andrada.sitracker.tasks.receivers.UpdateStatusNotificationReceiver.java

public class UpdateStatusNotificationReceiver extends BroadcastReceiver {

    private final static int UPDATE_SUCCESS_NOTIFICATION_ID = 11987;
    private final static int UPDATE_FAIL_NOTIFICATION_ID = 2;

    @Override

From source file org.sirimangalo.meditationplus.ReceiverAlarm.java

public class ReceiverAlarm extends BroadcastReceiver {
    private final static String TAG = "TimerReceiver";
    final static String CANCEL_NOTIFICATION = "CANCEL_NOTIFICATION";
    public static MediaPlayer player;

    private TextToSpeech tts;