Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my app, I only have one activity with an NFC intent but it still still fired in all other activities. Is there a way to limit this?

I want to imitate the way NFC TagInfo handles their NFC intent. They only allow NFC reads in their "Scan a tag..." activity and it is blocked in all other activites.

share|improve this question

1 Answer

up vote 2 down vote accepted

Show some code/manifest, but it doesn't really work like that. The activity selector is handled by the system and fired every time a tag goes into range. If your activity matches it will be in the list. If it is the only app, it will get started automatically. If you use foreground dispatch you can have your activity take priority when it is in the foreground, so that the selection dialog is not shown.

share|improve this answer
1  
Yes, activate foreground dispatch in all other activities and simply ignore any NFC-related intents. – NFC guy Dec 18 '12 at 9:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.