How can I put this method in a fragment?

69 Views Asked by At

I took this method from an activity. How can I add in a Fragment?

@Override
protected void onNewIntent(Intent intent) {
    setIntent(intent);
    readFromIntent(intent);
    if(NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())){
        myTag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
    }
}
1

There are 1 best solutions below

0
firegloves On

You can keep a reference to your fragment, so when onNewIntent is called you can call a Fragment's method