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 gob.sct.android.checatucell.services.LocationReceiver.java

public class LocationReceiver extends BroadcastReceiver implements OnTaskCompleted {

    private static String DEBUG_TAG = "QosCellServices";

    private int idOperdador;

From source file com.tenmiles.helpstack.service.AttachmentDownloadReceiver.java

public class AttachmentDownloadReceiver extends BroadcastReceiver {

    private static final int NOTIFICATION_ID = 1008;
    private static final int PENDING_INTENT_REQUEST_CODE = 108;

    @Override

From source file com.mytest.launcher2.InstallShortcutReceiver.java

public class InstallShortcutReceiver extends BroadcastReceiver {
    public static final String ACTION_INSTALL_SHORTCUT = "com.android.launcher.action.INSTALL_SHORTCUT";
    public static final String NEW_APPS_PAGE_KEY = "apps.new.page";
    public static final String NEW_APPS_LIST_KEY = "apps.new.list";

    public static final String DATA_INTENT_KEY = "intent.data";

From source file org.fairphone.peaceofmind.PeaceOfMindBroadCastReceiver.java

public class PeaceOfMindBroadCastReceiver extends BroadcastReceiver {

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

    private static final int PEACE_OF_MIND_ON_NOTIFICATION = 0;
    private static final int PEACE_OF_MIND_INTERRUPTED_NOTIFICATION = 1;

From source file com.android.launcher2.InstallShortcutReceiver.java

public class InstallShortcutReceiver extends BroadcastReceiver {
    public static final String ACTION_INSTALL_SHORTCUT = "com.android.launcher.action.INSTALL_SHORTCUT";
    public static final String NEW_APPS_PAGE_KEY = "apps.new.page";
    public static final String NEW_APPS_LIST_KEY = "apps.new.list";

    public static final String DATA_INTENT_KEY = "intent.data";

From source file com.llf.android.launcher3.InstallShortcutReceiver.java

public class InstallShortcutReceiver extends BroadcastReceiver {
    private static final String TAG = "InstallShortcutReceiver";
    private static final boolean DBG = false;

    public static final String ACTION_INSTALL_SHORTCUT = "com.android.launcher.action.INSTALL_SHORTCUT";

From source file com.ruesga.rview.receivers.NotificationReceiver.java

public class NotificationReceiver extends BroadcastReceiver {

    private static final String TAG = "NotificationReceiver";

    public static final String ACTION_NOTIFICATION_DISMISSED = "com.ruesga.rview.action.NOTIFICATION_DISMISSED";
    public static final String ACTION_NOTIFICATION_REPLY = "com.ruesga.rview.action.NOTIFICATION_REPLY";

From source file com.android.launcher20.InstallShortcutReceiver.java

public class InstallShortcutReceiver extends BroadcastReceiver {
    public static final String ACTION_INSTALL_SHORTCUT = "com.android.launcher.action.INSTALL_SHORTCUT";
    public static final String NEW_APPS_PAGE_KEY = "apps.new.page";
    public static final String NEW_APPS_LIST_KEY = "apps.new.list";

    public static final String DATA_INTENT_KEY = "intent.data";

From source file com.andernity.launcher2.InstallShortcutReceiver.java

public class InstallShortcutReceiver extends BroadcastReceiver {
    public static final String ACTION_INSTALL_SHORTCUT = "com.andernity.launcher.action.INSTALL_SHORTCUT";
    public static final String NEW_APPS_PAGE_KEY = "apps.new.page";
    public static final String NEW_APPS_LIST_KEY = "apps.new.list";

    public static final String DATA_INTENT_KEY = "intent.data";

From source file org.mozilla.mozstumbler.service.stumblerthread.Reporter.java

public final class Reporter extends BroadcastReceiver implements IReporter {
    private static final String LOG_TAG = AppGlobals.LOG_PREFIX + Reporter.class.getSimpleName();
    public static final String ACTION_FLUSH_TO_BUNDLE = AppGlobals.ACTION_NAMESPACE + ".FLUSH";
    public static final String ACTION_NEW_BUNDLE = AppGlobals.ACTION_NAMESPACE + ".NEW_BUNDLE";
    public static final String NEW_BUNDLE_ARG_BUNDLE = "bundle";
    private boolean mIsStarted;