Android Phonegap GCM多重通知

时间:2013-06-17 18:48:16

标签: android cordova push-notification google-cloud-messaging android-notifications

我正在使用带有GCM插件的Phonegap来显示GCM通知。 我能够正确显示通知,但我无法显示多个通知。我试过了Notification passes old Intent Extras,但还没有结果。 请帮忙。

private static void generateNotification(Context context, String message) {
        int icon = R.drawable.ic_launcher;
        long when = System.currentTimeMillis();
        NotificationManager notificationManager = (NotificationManager)
                context.getSystemService(Context.NOTIFICATION_SERVICE);
        Notification notification = new Notification(icon, message, when);

        String title = context.getString(R.string.app_name);
        int iUniqueId = (int) (System.currentTimeMillis() & 0xfffffff);

       // saveCallIntent.setData((Uri.parse("custom://"+System.currentTimeMillis())));
        Intent notificationIntent = new Intent(context, JainDharma.class);
        // set intent so it does not start a new activity
        //notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
        PendingIntent intent =
                PendingIntent.getActivity(context, iUniqueId, notificationIntent, 0);
        //PendingIntent contentIntent = PendingIntent.getActivity(context, UNIQUE_INT_PER_CALL, notificationIntent, 0);
        notification.setLatestEventInfo(context, title, message, intent);
        notification.flags |= Notification.FLAG_AUTO_CANCEL;

        // Play default notification sound
        notification.defaults |= Notification.DEFAULT_SOUND;

        //notification.sound = Uri.parse("android.resource://" + context.getPackageName() + "your_sound_file_name.mp3");

        // Vibrate if vibrate is enabled
        notification.defaults |= Notification.DEFAULT_VIBRATE;
        notificationManager.notify(0, notification);      

1 个答案:

答案 0 :(得分:2)

如果您的意思是最后一个通知会覆盖上一个通知,并且您希望更改它,则需要更改以下内容:

notificationManager.notify(0, notification);

为每个通知使用不同的ID(而不是0),您会看到所有通知。

但是,您可能想重新考虑是否为同一个应用显示多个通知是个好主意。作为你的应用程序的用户,我会觉得很烦人。