Android Intent Create sendBroadcast(Context c, Intent i, boolean local)

Here you can find the source of sendBroadcast(Context c, Intent i, boolean local)

Description

send Broadcast

License

Open Source License

Declaration

public static void sendBroadcast(Context c, Intent i, boolean local) 

Method Source Code

//package com.java2s;
/*/*from   ww w  . j a v a2s  .  c  o  m*/
 * Wifi Fixer for Android
 *     Copyright (C) 2010-2014  David Van de Ven
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU General Public License for more details.
 *
 *     You should have received a copy of the GNU General Public License
 *     along with this program.  If not, see http://www.gnu.org/licenses
 */

import android.content.Context;
import android.content.Intent;

import android.support.v4.content.LocalBroadcastManager;

public class Main {
    public static void sendBroadcast(Context c, Intent i, boolean local) {
        if (local)
            LocalBroadcastManager.getInstance(c).sendBroadcast(i);
        else
            c.sendBroadcast(i);
    }
}

Related

  1. intentDIY(Activity activity, Class classes, int enterAnim, int exitAnim)
  2. intentDIY(Activity activity, Class classes, Map paramMap, int enterAnim, int exitAnim)
  3. getCameraIntent(String outputFile)
  4. getUrifromIntent(Intent data, Uri outputFileUri)
  5. createContactAppIntent()
  6. sendUpdateCallerInfoCacheIntent(Context context)
  7. getGalleryIntent()
  8. getCutPicIntent(Uri uri, int outputX, int outputY)
  9. getSysAppDetailIntent(Context context)