Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.content.Intent; import android.os.Bundle; public class Main { public static void Broadcast(String action, Bundle bundle, Context context) { Intent intent = new Intent(); intent.setAction(action); if (bundle != null) { intent.putExtras(bundle); } context.sendBroadcast(intent); } }