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.example.android.sunshine.app.gcm.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_WEATHER = "weather";
    private static final String EXTRA_LOCATION = "location";

From source file org.jboss.aerogear.cordova.geo.ProximityReceiver.java

/**
 * Reciever for the Geofence event, this will create a notification if the app is in the background
 * @author edewit@redhat.com
 */
public class ProximityReceiver extends BroadcastReceiver {
    public static final int NOTIFICATION_ID = 6542;

From source file com.example.android.messagingservice.MessageReplyReceiver.java

/**
 * A receiver that gets called when a reply is sent to a given conversationId.
 */
public class MessageReplyReceiver extends BroadcastReceiver {

    private static final String TAG = MessageReplyReceiver.class.getSimpleName();

From source file com.geekandroid.sdk.sample.JPushReceiver.java

/**
 * 
 * 
 * ? Receiver
 * 1) ?
 * 2) ??

From source file my.home.lehome.receiver.LocalMessageReceiver.java

/**
 * Created by legendmohe on 15/3/11.
 */
public class LocalMessageReceiver extends BroadcastReceiver {

    public final static String LOCAL_MSG_RECEIVER_ACTION = "my.home.lehome.receiver.LocalMessageReceiver";

From source file com.ohso.omgubuntu.NotificationBroadcastReceiver.java

public class NotificationBroadcastReceiver extends BroadcastReceiver {
    private final int mId = 0;

    public NotificationBroadcastReceiver() {
    }

From source file com.commonsware.android.messaging.RemoteInputReceiver.java

public class RemoteInputReceiver extends BroadcastReceiver {
    static final int NOTIFY_ID = 1337;
    static final String EXTRA_INPUT = "input";
    static final Stack<Message> MESSAGES = new Stack<>();
    static final long INITIAL_TIMESTAMP = System.currentTimeMillis();

From source file co.uk.gauntface.mobile.devicelab.receiver.PushNotificationReceiver.java

public class PushNotificationReceiver extends BroadcastReceiver {

    public PushNotificationReceiver() {

    }

From source file com.kryten2k35.otaupdater.receivers.UpdateReceiver.java

public class UpdateReceiver extends BroadcastReceiver implements Constants {

    public final String TAG = this.getClass().getSimpleName();

    Context mContext = UpdaterApplication.getContext();

From source file com.tealeaf.PushBroadcastReceiver.java

public class PushBroadcastReceiver extends BroadcastReceiver {

    private static PendingIntent scheduledIntent = null;

    public static void scheduleNext(Context context, int timeout) {
        TeaLeafOptions options = new TeaLeafOptions(context);