I'm using RoboGuice in my Android application, I'm not sure how to pass object between Activity to Fragment?
I am aware about an approach where in you can serialize and pass in the bundle. In this article How to pass data between fragments in one of the comments it is mentioned
If you use Roboguice you can use the EventManager in Roboguice to pass data around without using the Activity as an interface. This is quite clean IMO.
I'm not sure how to do that, can anyone give an example?