How can i check whether NFC is enabled or not programmatically? Is there any way to enable the NFC on the device from my program? Please help me
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
You cannot enable the NFC programmatically. The user has to do it manually through settings or hardware button. |
|||
|
|
|
Use PackageManager and hasSystemFeature("android.hardware.nfc"), matching the element you should have in your manifest. Since 2.3.3 you can also use NfcAdapter.getDefaultAdapter() to get the adapter (if available) and call its isEnabled() method to check whether NFC is currently turned on. |
|||
|
|
|
I might be a little late here, but I've implemented a 'complete' example with detection of
I've also added a corresponding Beam example which uses the
method introduced in later Android versions to detect beam state like in 2) and 3). |
|||
|
|