使用“管理作业队列”显示多个firebase通知

时间:2018-05-04 07:11:16

标签: java android push-notification firebase-cloud-messaging android-notifications

我是Android开发新手任何人都可以指导我如何解决它?

我的Android项目中有多个通知 所有都是使用广播接收器和服务定制的,但现在我很困惑在同一时间管理相同类型的通知。

现在,我可以访问最新版本的旧版本同时使用相同类型的通知已被覆盖。

1 个答案:

答案 0 :(得分:0)

您应该为通知定义唯一ID。

notificationManager.notify(UNIQUE_ID, notification);

通常使用Date作为UNIQUE_ID来维护其标识。在您的活动中,您可以收到类似

的属性
 protected void onCreate(Bundle bundle){
       super.onCreate(bundle);
       String notificationAttribute = getIntent().getStringExtra("notificationAttribute",null);
}