Is there something special one needs to do, if you want to have
multiple notices.

I am getting really strange behavior.

When I post multiple notices..each notices results in additional icon
in the status bar.

And when I click on any of those icons it list all the notices that
have been posted.

but if i click on any of the posted notices it always launches the
intent of the first notice that
was posted..not the intent of the actually notice that was clicked on.

So is there any documentation that explains how to post more than one
notification????/

the code looks like the following.....

        Notification note=new Notification(
                R.drawable.notice_icon,
                message.getTitle(),
                System.currentTimeMillis());

        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
                        new Intent(this, SelectConversation.class)
                                .putExtra("messageId", message.getId())
                                , 0);

        note.setLatestEventInfo(this, message.getTitle(),
message.getMessage(), pendingIntent);
        note.defaults = Notification.DEFAULT_ALL;

        notificationManager.notify((int) message.getId(), note);


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to