粘性广播

如果我们使用方法 sendStickyBroadcast(intent),则相应的意图是粘性的,这意味着你发送的意图在广播完成后保持不变。StickyBroadcast 顾名思义是一种在广播完成后从广播中读取数据的机制。这可以在你可能想要在启动 Activity 之前检查在 Activity's onCreate() 中的意图中的键值的情况下使用。

Intent intent = new Intent("com.org.action");
intent.putExtra("anIntegerKey", 0);
sendStickyBroadcast(intent);