What is the best way to pass data from one fragment to another in android ? I know Otto and Event Bus can handle the issue, but what exactly should the non-library way to do out?
Please consider following before answering
http://developer.android.com/training/basics/fragments/communicating.html
Often you will want one Fragment to communicate with another, for example to change the content based on a user event. All Fragment-to-Fragment communication is done through the associated Activity. Two Fragments should never communicate directly.