How to check whether NFC is enabled or not in android?

后端 未结 5 1235
走了就别回头了
走了就别回头了 2020-12-25 12:09

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

5条回答
  •  醉酒成梦
    2020-12-25 12:43

    mNfcAdapter = NfcAdapter.getDefaultAdapter(this.getApplicationContext());
        try {
            if (mNfcAdapter != null) {
                result = true;
            }
        }
    

    We can verify using NfcAdapter with context.

提交回复
热议问题