我需要我的 android 应用程序来显示多个通知

I need my android app to show multiple notifications

我在互联网上没有找到解决问题的单一解决方案。

    int notificationId = Integer.parseInt(Common.getStringSharedPreference(context, "NOTIFICATION_ID", "ID", "1"));

    NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
    Notification notification = new Notification(R.drawable.app_logo, message, System.currentTimeMillis());
    String title = context.getString(R.string.app_name);
    Intent notificationIntent = null;
    notificationIntent = new Intent(context, MyLawyerActivity.class);
    notificationIntent.putExtra(ExtrasKeys.ITEM_OBJECT, (Serializable) object);
    notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
    PendingIntent intent = PendingIntent.getActivity(context, notificationId, notificationIntent, 0);
    notification.setLatestEventInfo(context, title, message, intent);
    notification.flags |= Notification.FLAG_AUTO_CANCEL;
    notification.flags |= Notification.FLAG_SHOW_LIGHTS;
    notification.defaults |= Notification.DEFAULT_SOUND;
    notification.sound = Settings.System.DEFAULT_NOTIFICATION_URI;
    notification.defaults |= Notification.DEFAULT_VIBRATE;
    notificationManager.notify(0, notification);

    Common.putStringSharedPreference(context, "NOTIFICATION_ID", "ID", ""+(notificationId+1));

请注意,我使用的是带棒棒糖的设备进行测试。

只需更改多个通知的号码即可

notificationManager.notify(0, notification);
notificationManager.notify(1, notification);