0
A
回答
0
請參閱下面的代碼。我正在使用它,它正在打開我的HomeActivity。
NotificationManager notificationManager = (NotificationManager) context
.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(icon, message, when);
Intent notificationIntent = new Intent(context, HomeActivity.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
| Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent intent = PendingIntent.getActivity(context, 0,
notificationIntent, 0);
notification.setLatestEventInfo(context, title, message, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(0, notification);
相關問題
- 1. 如何重新打開點擊/點擊通知的活動
- 2. 當通知的點擊,打開活動
- 3. 無法打開通知點擊活動
- 4. 點擊通知沒有打開活動
- 5. 如何重新打開通知中的活動點擊我android
- 6. 如何在點擊推送通知時打開新的活動?
- 7. Android通知PendingIntent每通知點擊打開活動
- 8. 打開通知活動時點擊通知與firebase
- 9. 如何知道點擊通知後是否打開了活動?
- 10. 打開新的活動OnImageButton點擊
- 11. 執行點擊新打開的活動
- 12. 點擊通知開始活動兩次
- 13. 點擊通知沒有打開提到的活動
- 14. 根據通知操作點擊打開不同的活動
- 15. 當點擊通知時更新活動
- 16. 打開特定活動時通知在後臺點擊
- 17. 在FCM中點擊通知時打開特定活動
- 18. 如何在點擊通知後打開特定活動?
- 19. 如何在點擊差異通知後打開同一活動
- 20. 在FCM通知點擊Android後打開活動
- 21. 點擊推送通知後打開活動
- 22. 如果點擊通知,如何打開anoter活動?
- 23. 如何打開通知組非發射活動點擊
- 24. 我怎樣才能打開活動時通知點擊
- 25. Android - 爲什麼活動在點擊通知後打開?
- 26. 打開活動已從通知打開
- 27. 單擊通知後未打開新活動Android
- 28. 如果在點擊通知時已打開,請勿打開活動
- 29. Android的 - 活動的通知點擊重新啓動(該通知已被打開前臺服務)
- 30. 通知圖標點擊開始新活動
感謝您的幫助,順便說一句,在哪裏把該代碼..?實際上,我使用Android工作室 – Ksr
創建了多個PendingIntent對象,其Intents只在其「額外」內容中有所不同,期望每次都獲得不同的PendingIntent。 –
否則可以發佈代碼 –