是否有有序的广播接收器列表?
Is there a list of ordered Broadcast receiver's list?
Android 中有没有办法确定哪些 BroadcastReceivers
是有序的?我正在测试 abortBroadcast()
函数,但是,我测试的广播接收器中的 none 已订购。
数量不多。这不是一个详尽的列表,但这里有几个例子:
android.intent.action.DATA_SMS_RECEIVED
android.provider.Telephony.SMS_CB_RECEIVED
android.provider.Telephony.SMS_RECEIVED
android.intent.action.CAMERA_BUTTON
android.intent.action.MEDIA_BUTTON
android.intent.action.SCREEN_OFF
android.intent.action.SCREEN_ON
android.intent.action.NEW_OUTGOING_CALL (you aren't allowed to abort this)
如果您只是想测试行为,您可以创建自己的广播 Intent
并注册一些接收器,然后发送有序的广播。
Android 中有没有办法确定哪些 BroadcastReceivers
是有序的?我正在测试 abortBroadcast()
函数,但是,我测试的广播接收器中的 none 已订购。
数量不多。这不是一个详尽的列表,但这里有几个例子:
android.intent.action.DATA_SMS_RECEIVED
android.provider.Telephony.SMS_CB_RECEIVED
android.provider.Telephony.SMS_RECEIVED
android.intent.action.CAMERA_BUTTON
android.intent.action.MEDIA_BUTTON
android.intent.action.SCREEN_OFF
android.intent.action.SCREEN_ON
android.intent.action.NEW_OUTGOING_CALL (you aren't allowed to abort this)
如果您只是想测试行为,您可以创建自己的广播 Intent
并注册一些接收器,然后发送有序的广播。