0
A
回答
0
從活動傳遞價值的BroadcastReceiver做以下事情:
在你Main_activity:
Intent i = new Intent(Main_activity.this, NameofBroadcastReceiver.class);
Bundle b = new Bundle();
b.putString("key", "value");
i.putExtras(b);
sendBroadcast(i);
而在你的廣播接收器類,
@Override
public void onReceive(Context context, Intent intent)
{
String result = intent.getString("key");
// your method
}
如果你想使用AlaramManger來在特定時間調用Receiver請參閱here提供的教程。它可以幫助您爲Receiver實現AlaramManager。
相關問題
- 1. 從服務發送廣播到活動?
- 2. 將數據從廣播發送到活動。如何發送?
- 3. 將廣播發送到不在活動堆棧中的活動
- 4. android - 發送一些數據到打開的活動從廣播
- 5. 無法從活動發送廣播到其他:Android的
- 6. 從類中發送廣播消息到活動中的Android
- 7. 無法從活動發送廣播:安卓
- 8. 從服務中發送廣播殺死活動
- 9. 從ScheduledExecutorService發送廣播
- 10. 將URI廣播到活動
- 11. 我的活動未收到其他活動發送的本地廣播
- 12. 我想發送值「從BroadcastReceiver到活動」
- 13. 如何將數據從廣播接收機發送到android中的活動
- 14. NullPointerExceptoin當從活動傳遞價值到廣播接收器
- 15. 活動之間的廣播發送/接收
- 16. 發送的廣播只對特定活動
- 17. 如何在活動創建並加載後發送廣播
- 18. 從1活動中取值併發送到第2活動
- 19. 將值從一個活動發送到另一個活動
- 20. 活動廣播:Laravel Echo未能收到廣播
- 21. 從PreferenceScreen發送廣播意圖?
- 22. 從C代碼發送廣播
- 23. 從廣播接收器完成活動
- 24. 從廣播接收器調用活動
- 25. 例外廣播發送到ComponentInfo
- 26. 廣播沒有收到活動
- 27. 從廣播接收器發送意圖與附加活動(問題與服務)
- 28. startActivity是否發送廣播?
- 29. C++發送UDP廣播
- 30. 發送廣播包問題
這是一個廣播明確登記在清單?它應該像調用[Context#sendBroadcast(intent)]一樣簡單(http://developer.android.com/reference/android/content/Context.html#sendBroadcast(android.content.Intent)) – Necronet