Uygulamamda push bildirimi kullanıyorum. Bir bildirim gönderildiğinde bir bildirim görüntülüyordum, başka bir bildirim gönderirseniz (önceki bildirimi temizlemeden), yeni bildirimin yerini alır. Gönderme bildirimi aldığında yeni bir bildirim ekleyin (eski yerine değil)
Bu
benNotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
int icon = R.drawable.ic_launcher;
CharSequence tickerText = "New notification Pending";
long time = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, time);
notification.flags = Notification.DEFAULT_LIGHTS
| Notification.FLAG_AUTO_CANCEL;
// Context context = getApplicationContext();
CharSequence contentTitle = "Notifications";
CharSequence contentText = newMessage;
Intent notificationIntent = new Intent(this, LoginActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText,
contentIntent);
mNotificationManager.notify(1, notification);
kullanın ama bildirim yerine istemiyorum koddur, ben yeni bir bildirim olarak eklemek istedi.
Onun mükemmel bir fikir. Çünkü zaman kimliği asla tekrarlanmaz. Ben de aynısını php'de kullanıyorum. Teşekkürler. Ancak bildirmek için kodunuzu değiştirin (kimlik, bildirim); Diğerleri için yararlı olabilir –
Teşekkürler Indra bahsettiğim için, şimdi id ile 1 değiştirdim. –
thanqu sir .. gönderdiği için –