What\'s the correct way to pass a bundle to the activity that is being launched from the current one? Shared properties?
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?