How to transfer some data to another Fragment likewise it was done with extras for intents?
Fragment
extras
intents
This is how you use bundle:
Bundle b = new Bundle(); b.putInt("id", id); Fragment frag= new Fragment(); frag.setArguments(b);
retrieve value from bundle:
bundle = getArguments(); if (bundle != null) { id = bundle.getInt("id"); }