我是安卓开发的新手 有人可以指导我如何解决它吗?
我的安卓项目中有多个通知 所有这些都是使用广播接收器和服务定制的,但现在我对在同一时间管理相同类型的通知感到困惑。
现在,我可以访问最新的通知,只有较旧的相同类型的通知已被覆盖。
应为通知定义唯一 ID。
notificationManager.notify(UNIQUE_ID, notification);
通常使用日期作为UNIQUE_ID,以保持其标识。在您的活动中,您可以接收您的属性,例如,
protected void onCreate(Bundle bundle){
super.onCreate(bundle);
String notificationAttribute = getIntent().getStringExtra("notificationAttribute",null);
}