我正在为我的大学制作一个应用程序,现在我想在其中发送有关事件的消息/信息。我如何向他们发送信息。我尝试了火力基地,但是,它只能工作到推送通知。我希望如果有人单击通知,它应该打开一个包含整个消息/信息的新活动,任何代码参考都将非常有帮助。
使用有效负载将信息放入通知中。 这可能是事件 ID。通知的文本也由您的服务器设置。
借助有效负载,您的应用程序客户端知道通知收到的事件 ID(打开通知时(。只需向数据库询问从客户端收到的事件 ID 中的信息,即可获得所需的一切。
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替换为单击通知时要重定向的任何活动。
如果我误解了您的要求,请随时发表评论。