经典指数          
原因
5870
浏览数
0
收藏数
 

关于BroadcastReceiver的说法不正确的是
  • 是用来接收广播Intent的
  • 一个广播Intent只能被一个订阅了此广播的BroadcastReceiver所接收
  • 对有序广播,系统会根据接收者声明的优先级别按顺序逐个执行接收者
  • 接收者声明的优先级别在<intent-filter>的android:priority属性中声明,数值越大优先级别越高

     举报   纠错  
 
切换
1 个答案

A Base class for code that will receive intents sent by

sendBroadcast(). API第一句话就说明了,用来接收广播发过来的Intent;所以A正确

B 明显错误,广播可以被订阅了该广播的所有接受者接收。

C The order receivers run in can be controlled with the

android:priority attribute of the matching intent-filter; receivers

with the same priority will be run in an arbitrary order.按照优先级别来执行。所以C正确

D Specify the relative importance or ability in handling a

particular Intent. 正确

综合上述:ACD正确,错误的当然是B

 
切换
撰写答案