I have multiple activities in my application. I want when notification shows in the bar, and clicking on it, it will resume from the activity which is currently in background.
Currently, I am using this, but it will always take me to the Home Activity which is Launcher activity.
Intent intent =new Intent(ServiceClass.this, home.class);
PendingIntent pendingIntent = PendingIntent.getActivity(GcmIntentService.this, 0, intent, 0);