我是Android开发新手任何人都可以指导我如何解决它?
我的Android项目中有多个通知 所有都是使用广播接收器和服务定制的,但现在我很困惑在同一时间管理相同类型的通知。
现在,我可以访问最新版本的旧版本同时使用相同类型的通知已被覆盖。
答案 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);
}