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.astudillo.andriod_test_login.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.example.sfarnell.myapplication.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.klinker.android.messaging_sample.SmsReceiver.java

/**
 * Needed to make default sms app for testing
 */
public class SmsReceiver extends BroadcastReceiver {

    @Override

From source file com.example.android.standup.AlarmReceiver.java

public class AlarmReceiver extends BroadcastReceiver {

    private static final int NOTIFICATION_ID = 0;

    public AlarmReceiver() {
    }

From source file com.andmobility.ChatPushReceiver.java

public class ChatPushReceiver extends BroadcastReceiver {
    private static final String LOGTAG = "ChatPushReceiver";

    @Override
    public void onReceive(Context context, Intent intent) {
        try {

From source file com.ryblade.openbikebcn.Wearable.NotificationIntentReceiver.java

/**
 * Broadcast receiver to post toast messages in response to notification intents firing.
 */
public class NotificationIntentReceiver extends BroadcastReceiver {
    public static final String ACTION_EXAMPLE = "com.example.android.support.wearable.notifications.ACTION_EXAMPLE";
    public static final String ACTION_ENABLE_MESSAGES = "com.example.android.support.wearable.notifications.ACTION_ENABLE_MESSAGES";

From source file com.example.android.notifications.NotificationIntentReceiver.java

/**
 * Broadcast receiver to post toast messages in response to notification intents firing.
 */
public class NotificationIntentReceiver extends BroadcastReceiver {
    public static final String ACTION_EXAMPLE = "com.example.android.notifications.ACTION_EXAMPLE";
    public static final String ACTION_ENABLE_MESSAGES = "com.example.android.notifications.ACTION_ENABLE_MESSAGES";

From source file com.packpublishing.asynchronousandroid.chapter6.BootBroadcastReceiver.java

public class BootBroadcastReceiver extends BroadcastReceiver {

    public static class SMSSchedule {
        int type;
        long time;
        String to;

From source file com.seadee.degree.service.NetworkStateReceiver.java

public class NetworkStateReceiver extends BroadcastReceiver {

    @SuppressWarnings("unused")
    private final static String TAG = "NetworkStateReceiver";
    static ConnectivityManager connectmanager;
    boolean wifistate = false;

From source file androidavanzato.wearablenotifications.NotificationIntentReceiver.java

/**
 * Broadcast receiver to post toast messages in response to notification intents firing.
 */
public class NotificationIntentReceiver extends BroadcastReceiver {
    public static final String ACTION_EXAMPLE = "com.example.android.support.wearable.notifications.ACTION_EXAMPLE";
    public static final String ACTION_ENABLE_MESSAGES = "com.example.android.support.wearable.notifications.ACTION_ENABLE_MESSAGES";