Just change the PendingIntent with another Activity and / or add the extra Intent information you use to create the PendingIntent :
Intent launchIntent = new Intent(this, AnotherActivity.class) launchIntent.putExtra("myKey", "myValue"); //.... PendingIntent contentIntent = PendingIntent.getActivity(this, 0, launchIntent , 0); notification.setLatestEventInfo(this, title, text, contentIntent);
And than in you Activity onCreate() :
//... getIntent().getStringExtra("myKey") //do your stuff..
source share