What is Broadcast Receiver?

Technology CommunityCategory: AndroidWhat is Broadcast Receiver?
VietMX Staff asked 4 years ago

Android apps can send or receive broadcast messages from the Android system and other Android apps, similar to the publish-subscribe design pattern. Broadcast Receiver which is also known as receiver is a component of android application. With this component we can register receivers for any system-level or application-level event. Once that event occurs, android system will notify the registered receivers about the execution of events respectively.

There are two types of broadcasts received by receivers and they are: 1. Normal Broadcasts 2. Ordered Broadcasts