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