How to transfer some data to another Fragment likewise it was done with extras for intents?
Fragment
extras
intents
getArguments() is returning null because "Its doesn't get anything"
Try this code to handle this situation
if(getArguments()!=null) { int myInt = getArguments().getInt(key, defaultValue); }