I have implemented the NFC foreground dispatch in my Activity. The code works fine, when the NFC tag get close to my phone, the onNew
I figured out that Intent is an parcelable object, I can use bundle.putParcelable() method to pass the intent instance to the next fragment.
You could store the intent in a field in your activity. Add a method like getLastIntent() and the call it in your fragment with getActivity().getLastIntent().
Or Extrat info from the intent and create a Bundle that you will use with fragment.setArguments() and in the onStart() method of your fragment use getArguments()