Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to pass a new, but different, Intent to an Activity. How do you differentiate between the new Intent and previous Intents? What kind of code goes into onNewIntent()? An example will be very helpful.

share|improve this question

4 Answers

up vote 17 down vote accepted

The new intent comes as part of onNewIntent(Intent). The original Intent is still available via getIntent().

You put whatever code you need to into onNewIntent in order to update the UI with the new parameters; probably similar to what you're doing in onCreate.

Also, you probably want to call setIntent(intent) in onNewIntent to make sure future calls to getIntent() within the Activity lifecycle get the most recent Intent data.

share|improve this answer
Thank you, So when the activity is called the control goes directly to onNewIntent()? – user588132 Jan 24 '11 at 22:25
If you fire an Intent that causes an existing Activity to be re-used, yes. – Christopher Jan 25 '11 at 8:59

How an intent arrives at your activity depends on the launchMode (see the launchmode docs at http://developer.android.com/guide/topics/manifest/activity-element.html#lmode).

  • For launchmode "standard" (the default) a startActivity with a new intent will result in an onCreate with that intent to a new instance of the activity.

  • For launchmodes "singleTop" and "singleTask" a startActivity with a new intent will result in either

a) an onCreate with that intent to a new instance of the activity (if that activity was not running) [as per "standard" above] or b) an onNewIntent with that intent to the existing activity (if that activity was already runnning).

For b), the second intent is available in the onNewIntent parameters. What you do with it depends on your application. Some applications will just ignore it, while others will do a setIntent() and start re-initialization / update processing the new intent.

share|improve this answer
currently i'm using singleTask, but both method not fired in my code according logs... :( – user170317 Oct 4 '12 at 20:37

There's a bug related to this : http://code.google.com/p/android/issues/detail?id=17137

share|improve this answer
can u propose solution? any code refactoring to solve it? – user170317 Oct 4 '12 at 20:37

Your Called Activity-Main Activity

public class MainActivity extends Activity
{
    public void onCreate(Bundle SavedInstanceState)
    {
    }

    @Override
    protected void onNewIntent(Intent intent) 
    {
        super.onNewIntent(intent);
        if(intent.getStringExtra("methodName").equals("myMethod"))
        {
            myMethod();
        }
    }

    public void mymethod()
    {
    }
}

Your Calling Activity

Code goes to Previous Intent

public class CallingActivity extends Activity
{
    public void onCreate(Bundle savedInstanceState)
    {
        Intent i=new Intent(this,MainActivity.class);
        i.putExtra("methodName","Mymethod");//goes to previous INtent
        startActivity(i);//will trigger only Mymethod in MainActivity
    }
}

Your Calling Activity

Code Starts New Activity using these kind of intent

public class CallingActivity extends Activity
{
    public void onCreate(Bundle savedInstanceState)
    {
        Intent i=new Intent(this,MainActivity.class);
        startActivity(i);//will trigger New Activity i.e. MainActivity
    }
}
share|improve this answer
protected void onNewIntent(Intent intent) in MainActivity not fired according you explanation. Can u please give some example according my code? Help will appreciated... – user170317 Oct 4 '12 at 20:33
@Vikalp Patel your code is very interesting and useful, but you have used 3 different versions of the "mymethod" string in the code. would it be possible for you to correct this? or are the different case versions of the string intentional. you have "Mymethod", "mymethod" and "myMethod" – user280109 Feb 8 at 1:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.