A few days ago I was struggling to find a way to use custom intents for my alarms. Although I got clear answer that I have to customize the Intents based on some unique ID eg. setAction() still have some problems.

I define a PendingIntent this way:

Intent intent = new Intent(this, viewContactQuick.class);
intent.setAction("newmessage"+objContact.getId());//unique per contact
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK ).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP );
intent.putExtra("id", Long.parseLong(objContact.getId()));
intent.putExtra("results", result.toArray());

PendingIntent contentIntent = PendingIntent.getActivity(context, 0, intent, 0);

then this is used by a notification manager

NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns);
// first try to clear any active notification with this contact ID
mNotificationManager.cancel(Integer.parseInt(objContact.getId()));

// then raise a new notification for this contact ID
mNotificationManager.notify(Integer.parseInt(objContact.getId()), notification);

This works like this:

  • application creates a message for a contact
  • an intent is provided with the contact id and details about the message
  • notification is raised with the message
  • user actiones on the notification and the app displays the message passed by the intent

The problem

This can happen more than once for a contact. And when the second message is generated, the notification is raised well (message is fine there) but the intent when the user actions the notification it uses old data, so previous message is passed and not the brand new message.

So someway the intent is caching and reusing previous extras. How can I make it unique per contact and per action?

link|improve this question

Is there a way to clear all cached IntentExtras? I assume I fixed it now, but older cached Intents still remain... – OneWorld Dec 10 '10 at 10:22
A similar issue can arise depending on the Intent's flags or an activity's launchMode. In this case, you'll need to check Activity::onNewIntent, because Activity::getIntent will return the Activity's ORIGINAL intent, not the new intent with the updated action/extras/etc. – brack Jan 7 '11 at 19:44
feedback

3 Answers

up vote 22 down vote accepted

If only one of your PendingIntents for this contact will be outstanding at any point in time, or if you always want to use the latest set of extras, use FLAG_UPDATE_CURRENT when you create the PendingIntent.

If more than one contact-specific PendingIntent will be outstanding at once, and they need to have separate extras, you will need to add a count or timestamp or something to distinguish them.

intent.setAction("actionstring" + System.currentTimeMillis());
link|improve this answer
I ended up adding a timestamp to the action. – Pentium10 Jul 5 '10 at 13:18
1  
man, you've got all the answers – Tom Dignan Jun 20 '11 at 7:57
awesome! i used my current widget id to seperate them ( also allowing some level of caching ). – DavidG Sep 13 '11 at 10:35
feedback

I usually specify unique requestCode to prevent my PendingIntents from overriding each other:

PendingIntent pending = PendingIntent.getService(context, unique_id, intent, 0);

And in your case I agree with CommonsWare you just need FLAG_UPDATE_CURRENT flag. New extras will override old values.

link|improve this answer
1  
That's the real solution – ognian Apr 23 '11 at 7:25
feedback

I have the same problem and I have tried some methods but still failed to receive unique Intent on my onNewIntent(Intent mIntent).

I've spend the last 2 days to find solutions on Internet, if this is possible then I am sure I did make a mistake which I have not realize yet, please be kind to paste your code snippet to this solution.

Below is my code to create the PendingIntent:

int iUniqueId = (int) (System.currentTimeMillis() & 0xfffffff);

Intent in = new Intent(getApplicationContext(), SelectFolderForSaveDownloadActivity.class);
in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
in.putExtra("id", iUniqueId);
in.setAction("action_id_" + iUniqueId);

PendingIntent pi = PendingIntent.getActivity(getApplicationContext(), iUniqueId, in, 0);
// tried with PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_ONE_SHOT

// create RemoteView for our notification layout
RemoteViews rv = new RemoteViews(getApplicationContext().getPackageName(), R.layout.download_progress_notification);

// create new notification
mNotification = new Notification(R.drawable.icon, "notification started.", System.currentTimeMillis());
mNotification.defaults = Notification.DEFAULT_LIGHTS;
mNotification.contentIntent = pi;

mNotification.contentView = rv;
mNotification.contentView.setTextViewText(R.id.tv_download_filename, di.sFilename);
mNotification.contentView.setOnClickPendingIntent(R.id.btn_ok, pi);

// send notification (show)
mNotificationManager.notify((int) System.currentTimeMillis(), mNotification); 
link|improve this answer
Look at the Linked questions on the right side bar, I am sure you will find the working code in there. – Pentium10 Nov 16 '10 at 8:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.