我已经为我的 android 应用程序实现了推送通知。我可以在通知栏中显示多个通知,但一次只能显示一个通知。
我认为标志类型的问题
Intent.FLAG_ACTIVITY_CLEAR_TOP
Intent.FLAG_ACTIVITY_SINGLE_TOP
和
PendingIntent.FLAG_CANCEL_CURRENT
这是我的代码,请告诉我要设置什么类型的标志
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
Intent.FLAG_ACTIVITY_SINGLE_TOP);
final PendingIntent resultPendingIntent =
PendingIntent.getActivity(
mContext,
0,
intent,
PendingIntent.FLAG_CANCEL_CURRENT
);