What's the correct way to pass a bundle to the activity that is being launched from the current one? Shared properties? TIA.
+2
A:
You can use the Bundle from the Intent:
Bundle extras = myIntent.getExtras();
extras.put*(info);
Or an entire bundle:
myIntent.putExtras(myBundle);
Is this what you're looking for?
Dustin
2009-04-20 16:25:29
And from the resulting intent you call getIntent().getExtras().get*() to get what's been stored before.
alex
2009-04-21 21:53:38