Android多重通知

前端之家收集整理的这篇文章主要介绍了Android多重通知前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我开发了一个应用程序,用户可以在其中创建事件并为该事件设置通知.所以我想添加多个通知.我使用以下代码.
final Notification notifyDetails = new Notification(R.drawable.icon,"Myapp",calendar.getTimeInMillis());
Context context = getApplicationContext();
Intent notifyIntent = new Intent(context,ViewDoughnut.class);
PendingIntent pendingIntent = PendingIntent.getActivity(ViewCal.this,notifyIntent,android.content.Intent.FLAG_ACTIVITY_NEW_TASK);
notifyDetails.setLatestEventInfo(context,contentTitle,contentText,pendingIntent);
notifyDetails.flags = Notification.FLAG_ONGOING_EVENT;
mNotificationManager.notify(SIMPLE_NOTFICATION_ID,notifyDetails);

当我使用上面的代码添加事件并创建通知时,它工作正常.但是,如果我添加另一个事件,没有创建新通知,旧的通知就会更新.我想再添加一个通知.怎么做?此外,如果用户删除与其对应的事件,我想删除任何特定通知.怎么可能?

解决方法

我假设SIMPLE_NOTIFICATION_ID是常量?要拥有单独的通知,您需要为每个通知使用不同的ID.
原文链接:https://www.f2er.com/android/316162.html

猜你在找的Android相关文章