これを行ってインテントを作成しています。
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);
余分なものを手に入れると、
CharSequence url = this.getIntent().getCharSequenceExtra("url");
それぞれの URL 値を持つ多くのインテントがあります。しかし、 Startup クラスの onCreate() 内でも同じ値が返されます。
私は何を間違えましたか?