List of usage examples for android.content BroadcastReceiver subclass-usage
From source file com.tumanako.dash.DashMessages.java
/**
Tumanako Dash Message Receiver / Broadcaster <p>
This class provides a generic framework for passing messages between
parts of the Tumanako app, using Intents. <p>
From source file org.thoughtcrime.redphone.monitor.MonitorConfigUpdateReceiver.java
/**
* A broadcast receiver that is responsible for scheduling and handling notifications
* for periodic monitor config update events.
*
* @author Stuart O. Anderson
*/
From source file com.mgalgs.trackthatthing.LocationReceiver.java
public class LocationReceiver extends BroadcastReceiver { // need a handler for callbacks to the ui final Handler mHandler = new Handler(); Context mContext;
From source file de.appplant.cordova.plugin.notification.AbstractTriggerReceiver.java
/** * Abstract broadcast receiver for local notifications. Creates the * notification options and calls the event functions for further proceeding. */ abstract public class AbstractTriggerReceiver extends BroadcastReceiver {
From source file org.namelessrom.devicecontrol.receivers.ActionReceiver.java
public class ActionReceiver extends BroadcastReceiver { public static final String ACTION = "org.namelessrom.devicecontrol.TRIGGER_ACTION"; public static final String KEY_ACTION = "key_action"; public static final int ACTION_DIALOG = 1133701;
From source file com.ibm.mf.geofence.demo.MyGeofenceReceiver.java
/** * */ public class MyGeofenceReceiver extends BroadcastReceiver { private static final Logger log = LoggingConfiguration.getLogger(MyGeofenceReceiver.class.getSimpleName()); private static final String SLACK_CHANNEL = "#geo-spam";
From source file com.kalianey.oxapp.service.GcmBroadcastReceiver.java
public class GcmBroadcastReceiver extends BroadcastReceiver { private final String LOG_TAG = BroadcastReceiver.class.getSimpleName(); private static final String EXTRA_SENDER = "from"; private static final String EXTRA_TYPE = "type"; private static final String EXTRA_MESSAGE = "message";
From source file nodomain.freeyourgadget.gadgetbridge.externalevents.PebbleReceiver.java
public class PebbleReceiver extends BroadcastReceiver { private static final Logger LOG = LoggerFactory.getLogger(PebbleReceiver.class); @Override public void onReceive(Context context, Intent intent) {
From source file com.commontime.plugin.notification.notification.AbstractTriggerReceiver.java
/** * Abstract broadcast receiver for local notifications. Creates the * notification options and calls the event functions for further proceeding. */ abstract public class AbstractTriggerReceiver extends BroadcastReceiver {
From source file com.cs180.ucrtinder.youwho.Messenger.MessengerPushReceiver.java
/** * @author Oleg Orlov */ public class MessengerPushReceiver extends BroadcastReceiver { private static final String TAG = MessengerPushReceiver.class.getSimpleName();