Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 791
r3mo Avatar asked Feb 01 '11 17:02

r3mo


People also ask

What is Android intent action?

An Intent is a messaging object you can use to request an action from another app component. Although intents facilitate communication between components in several ways, there are three fundamental use cases: Starting an activity. An Activity represents a single screen in an app.

Where do you define the starting activity of your application in Android?

In Android, you can configure the starting activity (default activity) of your application via following “intent-filter” in “AndroidManifest. xml“. See following code snippet to configure a activity class “logoActivity” as the default activity.


2 Answers

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
}
like image 81
Mr Auni Avatar answered Sep 19 '22 19:09

Mr Auni


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.

like image 23
Martijn Coenen Avatar answered Sep 19 '22 19:09

Martijn Coenen