Lines Matching refs:broadcast
198 <dd>A <i>broadcast receiver</i> is a component that does nothing but
199 receive and react to broadcast announcements. Many broadcasts originate in
207 An application can have any number of broadcast receivers to respond to any
255 and broadcast receivers — are activated by asynchronous messages
261 text. For broadcast receivers, the Intent object names the action being
320 <li><p>An application can initiate a broadcast by passing an Intent object to
327 broadcast receivers by calling their <code>{@link
343 a ContentResolver. And a broadcast receiver is active only while it's
344 responding to a broadcast message. So there's no need to explicitly shut
423 elements for broadcast receivers, and
427 consequently never run. However, broadcast receivers can either be
501 For a broadcast receiver that's created and registered in code, the
1126 services, and broadcast receivers — including the states that they
1570 A broadcast receiver has single callback method:
1576 When a broadcast message arrives for the receiver, Android calls its
1578 method and passes it the Intent object containing the message. The broadcast
1584 A process with an active broadcast receiver is protected from being killed.
1590 This presents a problem when the response to a broadcast message is time
1726 is the same reason that broadcast receivers should employ services rather