Android: Starting app from 'recent applications' starts it with the last set of extras used in an intent

若如初见. 提交于 2019-11-26 21:18:36

问题


Bit of a confusing problem for me here:

I've got a home screen widget which, when clicked, starts my main app Activity with a few extras put in the intent:

Intent start = new Intent(context, Main.class);
start.putExtra("action", "showXYZ");
start.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(start);

This all works fine, it starts my activity and my activity receives the extras as expected. It processes these extras and starts another activity.

Once a user has clicked the home screen widget and started the Main activity in this way, going into the app through the 'Recent applications' method (holding down the 'home' key) starts the Main activity with the extras - causing processing to happen which I don't want (and leading to the second activity to open, rather than for the Main activity to just be shown).

Is there any work-around for this? When starting the app from the 'recent applications' method, I want to simply start the Main activity without the last set of extras.

Many thanks for the help! r3mo

Note: I'm on android 1.5

EDIT:

Found a workaround here: Android keeps caching my intents Extras, how to declare a pending intent that keeps fresh extras?

I'm going to timestamp the intent being set off by the widget, and check that the timestamp is recent in Main.java. If it is, i'll proceed with the processing. If not, i'll just show the Main.java activity.

Keen to hear if there are any official solutions to this.


回答1:


As Martijn says, you can check if your application is opened using an Intent with the flag FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY set, like this:

int flags = getActivity().getIntent().getFlags();       
if ((flags & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) != 0) {
    // The activity was launched from history
}



回答2:


I think you can distinguish a "normal" startup from a "recent applications" startup by checking the Intent flags; there is a flag called

Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY

which, according to the documentation:

This flag is not normally set by application code, but set for you by the system if this activity is being launched from history (longpress home key).

So when this flag is set, you could choose to ignore the extras.




回答3:


You should clear the extras from your intent after using them.

Bundle extras = getIntent().getExtras();
if (extras == null) {
    return;
}
String value1 = extras.getString("Value1");
String value2 = extras.getString("Value2");
extras.clear();


来源:https://stackoverflow.com/questions/4866149/android-starting-app-from-recent-applications-starts-it-with-the-last-set-of

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!