我正在实施GCM。我的应用有两项活动,比如A
和B
。我正在使用此代码从NotificationBar中启动B
:
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打开带有Intent的Activity B
,说'B-notification-intent',然后我使用Back按钮从A
打开Activity B
,然后再次启动{{1来自B
的新意图(说'BA-intent')。我使用下面的代码:
A
然后我在intent = new Intent(this, B.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
startActivity(intent);
中获得新数据(即B
的屏幕被刷新)。
但是,如果我按下主页按钮然后我从最近的应用程序启动应用程序,那么我会使用'B-notification-intent'来查看较早的B
屏幕。相反,我想要最新的意图,即'B-A-intent'。我在B
中使用此代码:
B
所以任何人都可以帮助我获取当前的屏幕(意图)。
答案 0 :(得分:21)
我还注意到,有时候Activity
onCreate()
从“最近”发起时会变得陈旧Intent
,但 是一种方式检查一下,这样你就可以适当地处理Intent
。
protected boolean wasLaunchedFromRecents() {
return (getIntent().getFlags() & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) == Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY;
}
在我的拙见中,该标志名称很差(引用“最近”列表的其他标志实际上使用了该单词,例如FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS
,FLAG_ACTIVITY_RETAIN_IN_RECENTS
)并且文档从未更新以反映许多事实流行的Android设备有一个专门的按钮:
此标志通常不是由应用程序代码设置的,而是由系统为您设置的,如果从历史记录启动此活动(longpress home key)。
(注意我已经意识到你在几年前以另一种方式解决了你的问题,但这个问题是最近的搜索结果之一' android old intent recent'并且没有其他相关问题提到这个标志,所以希望这个答案可以帮助别人。)
答案 1 :(得分:0)
出于某种原因,bkDJ's / the accepted answer 对我不起作用。仅当接受的答案也不适合您时,请尝试以下操作:
FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY 和在第一次处理意图后为其设置布尔值都不会阻止意图被重用。
我必须为发生此问题的每个意图添加时间戳。并且仅当时间戳不超过 30 秒时才执行意图。
像这样:
Intent intent = new Intent(CONTEXT, TargetActivity.class);
Calendar now = Calendar.getInstance();
intent.putExtra("timestampOfIntentInMilliseconds", now.getTimeInMillis());
// put your actual extras to the intent
然后在处理意图时:
Bundle extras = intent.getExtras();
long timestampOfIntentInMilliseconds = extras.getLong("timestampOfIntentInMilliseconds");
now = Calendar.getInstance();
if(now.getTimeInMillis() < (timestampOfIntentInMilliseconds + 30000))
{
// do what you want to do with the intent
}