标准广播与有序广播

标准广播即每个程序都可以收到广播,具有公平的机会,广播不可以被阻断,收到广播也是同时的。

有序广播即每个程序收到广播是有先后的,并且先收到的程序可以阻断后面程序接收广播。

标准广播接收器:

1、继承类BroadcastReceiver并且在函数onReceive中编写收到广播后的操作。

2、在Manifest.xml文件中进行注册。假设广播接收器为myBroadcast,则在文件中注册

android:name=".myBroadcast">

"comm.broadcasttest.Mybroadcast"/>

ps:comm.broadcasttest.Mybroadcast即表明接收哪个广播,接收到intent标识为此语句的广播。

标准广播发送器:

Intentintent=newIntent("comm.broadcasttest.Mybroadcast");

sendBroadcast(intent);

有序广播发送器则使用语句:

sendOrderBroadcast(intent,null)

有序广播接收器:

1、可标识优先级,

"100">

2、优先级高的广播接收器可以截断广播

在onReceive()函数中添加语句:

abortBroadcast();

则优先级低于此程序的程序将不再收到此广播。

你可能感兴趣的:(标准广播与有序广播)