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

androidandroid-activityandroid-intentextras

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.

Best Answer

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
}
Related Topic