What's the correct way to pass a bundle to the activity that is being launched from the current one? Shared properties? TIA.
|
|
You have a few options: 1) Use the Bundle from the Intent:
2) Create a new Bundle
3) Use the putExtra() shortcut method of the Intent
NOTE: Bundles have "get" and "put" methods for all the primitive types, Parcelables, and Serializables. I just used Strings for demonstrational purposes. |
||
|
|
|
|
You can use the Bundle from the Intent:
Or an entire bundle:
Is this what you're looking for? |
||
|
