I'm trying to use NFC Hardware from my device. But, the problem is that when I register the Activity to receive the Intent:
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
I receive the result in an Activity instead of a Fragment. Is there a way to handle this result inside a Fragment?
Thanks in advance!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…