在 Android 中,发送广播(sendBroadcast)通常涉及以下几个步骤:
Intent intent = new Intent("com.example.MY_BROADCAST");
这里,"com.example.MY_BROADCAST"
是你要发送的广播的动作(action)。你可以根据需要自定义这个值。
putExtra()
方法来实现。例如:intent.putExtra("key", "value");
这里,"key"
是数据的键(key),"value"
是对应的数据值(value)。你可以根据需要自定义这些值。
<application
...
<receiver android:name=".MyBroadcastReceiver">
<intent-filter>
<action android:name="com.example.MY_BROADCAST" />
</intent-filter>
</receiver>
</application>
这里,com.example.MY_BROADCAST
是广播的动作(action),与 Intent 对象中的动作相匹配。
sendBroadcast()
方法发送广播了。例如:sendBroadcast(intent);
这将触发在 AndroidManifest.xml 文件中注册的广播接收器(Receiver)来处理这个广播。
注意:在实际应用中,你可能需要根据实际情况调整上述代码示例中的类名、方法名和变量名。