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 saftyos.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.android.screenspeak.SideTapManager.java

/**
 * Manages detection of taps on the side of the device. Wraps IntegratedTapDetector.
 */
public class SideTapManager extends BroadcastReceiver implements IntegratedTapDetector.TapListener,
        FeedbackController.HapticFeedbackListener, AccessibilityEventListener {

From source file de.escoand.readdaily.DownloadHandler.java

public class DownloadHandler extends BroadcastReceiver {
    public final static long SUBSCRIPTION_DOWNLOAD_UNKNOWN = -2;
    public final static long DOWNLOAD_ID_UNKNOWN = -1;

    public static long startInvisibleDownload(final Context context, final String url, final String title) {
        DownloadManager manager = (DownloadManager) context.getSystemService(Context.DOWNLOAD_SERVICE);

From source file angeloid.dreamnarae.Boot_Script.java

public class Boot_Script extends BroadcastReceiver {
    // Boot Script
    static CharSequence boot_ticker;
    static CharSequence boot_bottom;
    static CharSequence boot_top;

From source file de.ub0r.android.portaltimer.UpdateReceiver.java

public class UpdateReceiver extends BroadcastReceiver {

    private static final String TAG = "portal-timer/ur";

    private static long[] VIBRATE = new long[] { 100, 500, 500, 500, 500, 500, 500 };

From source file org.fabiosilva.kitkatlauncher.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.csipsimple.plugins.betamax.CallHandlerWeb.java

public class CallHandlerWeb extends BroadcastReceiver {

    private static final String THIS_FILE = "CH BETAMAX";
    public static final String ACTION_DO_WEB_CALL = "com.csipsimple.plugins.betamax.DO_WEB_CALL";

    @Override

From source file com.lesikapk.opengelplus.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 dev.ukanth.ufirewall.broadcast.PackageBroadcast.java

/**
 * Broadcast receiver responsible for removing rules that affect uninstalled
 * apps.
 */
public class PackageBroadcast extends BroadcastReceiver {

From source file de.qspool.clementineremote.backend.receivers.ClementinePhoneStateCheck.java

public class ClementinePhoneStateCheck extends BroadcastReceiver {

    private static String lastPhoneState = TelephonyManager.EXTRA_STATE_IDLE;

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