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 br.ajmarques.cordova.plugin.localnotification.Restore.java

/**
 * This class is triggered upon reboot of the device. It needs to re-register
 * the alarms with the AlarmManager since these alarms are lost in case of
 * reboot.
 */
public class Restore extends BroadcastReceiver {

From source file de.appplant.cordova.plugin.localnotification.Restore.java

/**
 * This class is triggered upon reboot of the device. It needs to re-register
 * the alarms with the AlarmManager since these alarms are lost in case of
 * reboot.
 */
public class Restore extends BroadcastReceiver {

From source file com.footprint.cordova.plugin.localnotification.Restore.java

/**
 * This class is triggered upon reboot of the device. It needs to re-register
 * the alarms with the AlarmManager since these alarms are lost in case of
 * reboot.
 */
public class Restore extends BroadcastReceiver {

From source file com.commonsware.android.lollipopnotify.AlarmReceiver.java

public class AlarmReceiver extends BroadcastReceiver {
    private static final int NOTIFY_ID = 1337;
    static final String EXTRA_TYPE = "type";

    @Override
    public void onReceive(Context ctxt, Intent i) {

From source file com.github.marcosalis.kraken.utils.network.NetworkReceiver.java

/**
 * Network connectivity changes notifier. Clients must register to get
 * connection updates through the application's {@link LocalBroadcastManager}
 * and passing an anonymous extension of this class as shown below:
 * 
 * <pre>

From source file com.monkey.entonado.AlarmReciever.java

public class AlarmReciever extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        System.out.println("llego a recieve   ------------------");

From source file com.yangtsaosoftware.pebblemessenger.receivers.SMSHandler.java

/**
 * Created by yunshansimon on 15/3/17.
 */
public class SMSHandler extends BroadcastReceiver {

    @Override

From source file org.nerdcircus.android.klaxon.Notifier.java

public class Notifier extends BroadcastReceiver {
    public static String TAG = "KlaxonNotifier";

    @Override
    public void onReceive(Context context, Intent intent) {
        NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);

From source file io.barracks.ota.client.helper.UpdateCheckHelper.java

/**
 * A helper which makes it easier to use the {@link UpdateCheckService}.
 * <p>
 * Use {@link #bind(Context, UpdateCheckCallback)} before requesting for an udpate,
 * and {@link #unbind(Context)} when you are done using the helper.
 * </p>

From source file io.barracks.ota.client.helper.PackageDownloadHelper.java

/**
 * A helper which makes it easier to use the {@link PackageDownloadService}.
 * <p>
 * Use {@link #bind(Context, PackageDownloadCallback)} before starting a download,
 * and {@link #unbind(Context)} when you are done using the helper.
 * </p>