我正在爲我的大學開發一個應用程序,現在我想發送關於事件的消息/信息。我如何發送信息給他們。我嘗試了firebase,但它一直在推送通知。我想如果有人點擊通知它應該打開一個新的活動與整個消息/信息任何代碼參考將是非常有益的。我想通過通知發送信息
0
A
回答
0
public void getnotification() {
NotificationManager notificationmgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Intent intent = new Intent(this, your_acitivity.class);
PendingIntent pintent = PendingIntent.getActivities(this, (int) System.currentTimeMillis(), new Intent[]{intent}, PendingIntent.FLAG_UPDATE_CURRENT);
Notification notif = new Notification.Builder(this)
.setSmallIcon(R.drawable.shadow_fiend)
.setContentTitle(notif_title)//Title of the notification
.setContentText(notif_detail)//Description of the notification
.setContentIntent(pintent)
.setAutoCancel(true)
.build();
notificationmgr.notify(0, notif);
}
當上述函數被調用時,會生成通知,並且通過單擊通知將用戶重定向到特定的活動。在意圖中,將your_acitivity.class替換爲單擊通知時要重定向的任何活動。
如果我誤解了您的要求,請隨時發表評論。
0
使用有效載荷將信息放入您的通知中。這可能是一個事件ID。您的通知文本也由您的服務器設置。
感謝有效載荷,您的應用程序客戶端知道通知(通知打開時)時收到了什麼事件ID。只需向客戶數據庫詢問客戶收到的事件ID中的信息,即可獲得所需的全部信息。
相關問題
- 1. 通過API發送信息
- 2. 我想通過signalR使用線程發送通知
- 3. 通過Firebase發送通知
- 4. 我如何通過linkedin api發送消息/通知?
- 5. JAVA通過json發送/接收信息
- 6. 通過網絡發送信息
- 7. 通過藍牙發送一些信息
- 8. 通過JavaScript發送Facebook聊天信息
- 9. 通過for循環發送信息
- 10. 通過spotify發送歌曲信息
- 11. 通過A2DP/AVRCP發送曲目信息
- 12. 通過Javascript發送有效信息
- 13. 通過AJAX發送登錄信息
- 14. Quickbooks Desktop通過REST API發送信息
- 15. 通過PHP頁面發送信息
- 16. 通過網絡發送基本信息
- 17. 通過Html將信息發送到IP
- 18. 我想通過Windows發佈SOAP信封
- 19. 我想通過Last.fm API通過Pylast獲取用戶信息
- 20. 通過推送通知發送圖像或消息
- 21. 通過Firebase發送推送通知
- 22. 通過node.js發送android推送通知
- 23. 我想通過短信發送android系統
- 24. 我想通過snmptrap發送一條snmp消息
- 25. 通過彩信發送gif
- 26. 通過PHP發送短信
- 27. 發送短信通過.net
- 28. 通過IP發送短信
- 29. 通過NFC發送短信
- 30. 通過SMPP發送短信
Bilal,我的信息將會在200字左右。是否有可能與Firebase? –