Is it possible to stop reading NFC tags? I’m using...
# android
s
Is it possible to stop reading NFC tags? I’m using
adapter.disableReaderMode(activity)
but that restores the adapter back to normal mode where the OS is reading my tags as NDEF records straight after a read. I would like to be able to enable and disable all tag reading whilst my app is in the foreground. The idea being that I can
adapter.enableReaderMode()
when I want to read and then somehow turn it off when I’m done…
😶 5