Я делаю это для создания Намерения.
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.Но я также возвращаю то же значение внутри onCreate () класса Startup.
Что я сделал не так?