I'm programming an app and currently thinking of using a bundle to save the selected option of a floating context menu so it can appear in the next activity.It should go like this:
1.- Click a button, then the floating context menu should appear.
2.- Select an option.
3.- Start the second activity.
4.- The name of the option selected should appear in a textbox / EditText in the new activity.
Up to the third step, it's pretty easy, but I don't know how to make the 4th one. Can anyone tell me please how should I proceed?
If your activity hosts a fragment, you can pass the information to the fragment using
setArguments(Bundle)
, which will allow you to bundle up the information and retrieve it when the view is created. The advantage to such an implementation means that the activity you send data to can be used for multiple things (where using anIntent
would indicate that the activity has a sole purpose, and cannot be easily re-used)Then in
MyFragment
:Of course you could always use the intent to pass in the info directly to the activity:
In
MyActivity
, you can just get theIntent
and look at the info there: