Android Broadcast Receivers

Every now and then Android broadcasts different type of intents with information, such as Internet connection availability, Bluetooth enabled/disabled, etc. Applications can register and listen for these broadcasts using broadcast receivers, and if they want they can even broadcast their own intents, which other applications can listen for.

Lecture material

The following chapters from the course book The Busy Coder's Guide to Android Development:

The Android Developers Guide's page about Broadcastsopen in new window.