I'm implementing GCM in my app that has two activities say A and B And using this code to launch Activity B from Notification bar
long when = System.currentTimeMillis();
NotificationManager notificationManager = (NotificationManager) context .getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification ;
String title = context.getString(R.string.app_name);
notification = new Notification(R.drawable.app_notification_icon,"De Centrale", when);//message
Intent notificationIntent = new Intent(context, B.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP| Intent.FLAG_ACTIVITY_SINGLE_TOP);//|Intent.FLAG_ACTIVITY_REORDER_TO_FRONT
PendingIntent intent = PendingIntent.getActivity(context, 0,notificationIntent, PendingIntent.FLAG_CANCEL_CURRENT);
notification.setLatestEventInfo(context, title, msg, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(0, notification);
Notification Bar opens Activity B with intent say 'B-notification-intent' then I open Activity A from activity B using back button then again I launch Activity B from A having new intent say 'B-A-intent' using below code
intent = new Intent(this, B.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP| Intent.FLAG_ACTIVITY_SINGLE_TOP);
startActivity(intent);
And then I get New Data in Activity B(i.e Screen B is refreshed)
But If I press Home button and then I launch application from Recent app then I get older B screen with 'B-notification-intent'.But I want the latest intent i.e 'B-A-intent' . I'm using this code in Activity B
@Override
protected void onCreate(Bundle b)
{
fetchDataFromDB(getIntent());
}
@Override
protected void onNewIntent(Intent intent)
{
fetchDataFromDB(intent);
}
So anybody please help me getting my current screen(intent).