views:

833

answers:

2

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
And from the resulting intent you call getIntent().getExtras().get*() to get what's been stored before.
alex
+8  A: 
fiXedd