广播接收器和内容提供器是 Android 的四个核心组件中的两个。广播接收器响应系统/应用范围的事件,而内容提供器在应用之间共享数据。两者都使应用能够与系统和其他应用交互。
广播接收器 — 响应事件
A BROADCAST RECEIVER responds to broadcast messages (events) from the system or apps:
→ system events: battery low, connectivity changed, boot completed, airplane mode, etc.
→ app events: custom broadcasts within or between apps
→ register to LISTEN for specific broadcasts and react when they occur
: () {
{
(intent.action == Intent.ACTION_BATTERY_LOW) { }
}
}
