0

Android に GCM PushNotification を実装しましたが、問題なく動作します。私も定期的に通知を受け取ります。デバイストレイで通知を受け取ったときに、それをクリックせず、しばらくして他の通知も表示される場合、2つの異なる通知または1つ、つまり最新の通知が表示されるというクエリが1つだけあります。

現在、最新のもののみを取得しています。

どんな助けでも大歓迎です。

4

1 に答える 1

1

はい、すべての通知を表示できます。mNotificationManager.notify(uniqueId, mBuilder.build()) で uniqueIdを渡すことで、新しい通知が古い通知を置き換えることはありません。

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context)
    .setSmallIcon(R.drawable.icon)
    .setContentTitle("FleeGroups Notification")
    .setStyle(new NotificationCompat.BigTextStyle()
    .bigText(message))
    .setContentText(message)
    .setAutoCancel(true)
    .setDefaults(Notification.DEFAULT_ALL);
mBuilder.setContentIntent(resultPendingIntent);
mNotificationManager.notify(uniqueId, mBuilder.build());
于 2013-08-22T05:51:30.060 に答える