I wrote a simple Android App that show a custom Notification like this:
Context context = getApplicationContext(); NotificationManager manager = (N
Since it seems your activity is already running, I think you need to specify FLAG_UPDATE_CURRENT, otherwise the getIntent() call will return the previous one. See this answer.
FLAG_UPDATE_CURRENT
getIntent()