我正在实施 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
带有 Intent 的 Activity,例如“B-notification-intent”,然后我使用“后退”按钮打开 Activity,然后再次A
从拥有新 Intent(例如“BA-intent”)启动。我使用下面的代码:B
B
A
intent = new Intent(this, B.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
startActivity(intent);
然后我得到新数据B
(即B
刷新屏幕)。但是,如果我按下主页按钮,然后从最近的应用程序启动应用程序,那么我会看到B
带有“B-notification-intent”的旧屏幕。相反,我想要最新的 Intent,即“BA-intent”。我正在使用此代码B
:
@Override
protected void onCreate(Bundle b)
{
fetchDataFromDB(getIntent());
}
@Override
protected void onNewIntent(Intent intent)
{
fetchDataFromDB(intent);
}
所以任何人都请帮助我获取我当前的屏幕(意图)。