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.
|
The new intent comes as part of You put whatever code you need to into Also, you probably want to call |
|||||
|
|
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).
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. |
|||
|
|
There's a bug related to this : http://code.google.com/p/android/issues/detail?id=17137 |
|||
|
|
Your Called Activity-Main Activity
Your Calling ActivityCode goes to Previous Intent
Your Calling ActivityCode Starts New Activity using these kind of intent
|
|||||
|