public class MyReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// 在此处处理接收到的广播信息
String action = intent.getAction();
Bundle extras = intent.getExtras();
// ...
}
}
Intent intent = new Intent("com.example.ACTION_MY_BROADCAST"); intent.putExtra("key", "value"); context.sendBroadcast(intent);
其中,"com.example.ACTION_MY_BROADCAST"为自定义的广播标识符,"key"和"value"为广播信息的键值对。