What's the correct way to pass a bundle to the activity that is being launched from the current one? Shared properties?
|
feedback
|
|
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. | |||
|
feedback
|
|
You can use the Bundle from the Intent:
Or an entire bundle:
Is this what you're looking for? | |||
feedback
|
|
Yea that's great, i too saw in a list activity example on this site http://android-codes-examples.blogspot.com/2011/04/listactivity-with-remembering-last.html | |||
|
feedback
|