I am doing this to create a Intent.

Intent notificationIntent = new Intent(this, Startup.class);
notificationIntent.putExtra("url", contentUrl);

PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
Notification notification = new Notification(icon, tickerText, when);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);

On getting the extra,

CharSequence url = this.getIntent().getCharSequenceExtra("url");

There are many Intents with their respective url values. But I also get back the same value inside onCreate() of Startup class.

What did I do wrong?

link|improve this question
are these both different activities.. – sandy Jun 17 '11 at 10:42
Sorry I do not understand by different activities.. – anewbie Jun 17 '11 at 10:49
feedback

2 Answers

up vote 0 down vote accepted

This should answer you query for sure...cheers :) Android keeps caching my intents Extras, how to declare a pending intent that keeps fresh extras?

link|improve this answer
This works! notificationIntent.setAction("actionstring" + System.currentTimeMillis()); PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT); – anewbie Jun 20 '11 at 1:23
feedback

Use this

PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notifyIntent, android.content.Intent.FLAG_ACTIVITY_NEW_TASK);

instead of this

PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);

and check the results

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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