I have the below class that gets called whenever I receive a push notification. (works wherever though). The issue is that, If I send a notification from another device to my mobile (lets say an iphone) I am getting the notification and it stays in the notification bar. If I do not touch it, and send another one, another one will arrive and 2 icons will now appear in the notification bar, However, the moment I send a notification from my own mobile to myself, all the current notifications that are in the bar disappear and get replaced by mine. When I send a new one, additional icon does not appear, but rather the old one gets updated.
How can I make each notification appear in the notification bar ? (because each one has a unique ID sent to it via the intent that does specific thing upon opening of the designated activity)
private void sendNotification(String data, String id, Context ctx)
{
mNotificationManager = (NotificationManager) ctx.getSystemService(Context.NOTIFICATION_SERVICE);
Intent myIntent = new Intent(ctx, myActiviy.class);
myIntent.putExtra("data", data);
myIntent.putExtra("id", id);
PendingIntent contentIntent = PendingIntent.getActivity(ctx, 0, myIntent, PendingIntent.FLAG_UPDATE_CURRENT);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(ctx)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("notification")
.setTicker("notification")
.setStyle(new NotificationCompat.BigTextStyle().bigText(data))
.setAutoCancel(false)
.setContentText(data);
mBuilder.setContentIntent(contentIntent);
mNotificationManager.notify((int) (System.currentTimeMillis()/1000), mBuilder.build());
}?
The procedure you are using to show notification is now depreciated. Use the following also give unique int to
mNotificationManager.notify(uniqueId, mBuilder.build()
to show seperate notifications.