粘性廣播

如果我們使用方法 sendStickyBroadcast(intent),則相應的意圖是粘性的,這意味著你傳送的意圖在廣播完成後保持不變。StickyBroadcast 顧名思義是一種在廣播完成後從廣播中讀取資料的機制。這可以在你可能想要在啟動 Activity 之前檢查在 Activity's onCreate() 中的意圖中的鍵值的情況下使用。

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