我执行的GCM。 我的应用程序有两个活动,说A
和B
。 我使用此代码,推出B
从NotificationBar:
long when = System.currentTimeMillis();
NotificationManager notificationManager =
(NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
String title = context.getString(R.string.app_name);
Notification 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);
NotificationBar打开活动B
,意图,说“B-通知意向”,然后我打开活动A
从B
使用后退按钮,然后重新启动我B
从A
有一个新的intent(说“BA-意图”)。 我用下面的代码:
intent = new Intent(this, B.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
startActivity(intent);
然后我在获得新数据B
(即屏幕B
刷新)。 但是,如果我按Home按钮,然后我启动从最近的应用程序应用程序,然后我老B
屏幕,“B-通知意图”。 相反,我想要最新的意图,即“BA-意图”。 我使用这个代码B
:
@Override
protected void onCreate(Bundle b)
{
fetchDataFromDB(getIntent());
}
@Override
protected void onNewIntent(Intent intent)
{
fetchDataFromDB(intent);
}
所以,有人请帮助我让我当前屏幕(意图)。