default if the activity is closed then you need to handle the click in the onCreate() of the activity.
Bundle bundle = this.getIntent().getExtras();
if (bundle != null) {
String notificationLink = bundle.getString(PushManager.NOTIFICATION_LINK_KEY);
}
}