Documentation for this section has not yet been entered.
Return true if the NDEF Push (Android Beam) feature is enabled.
This function will return true only if both NFC is enabled, and the NDEF Push feature is enabled.
Note that if NFC is enabled but NDEF Push is disabled then this device can still receive NDEF messages, it just cannot send them.
Applications cannot directly toggle the NDEF Push feature, but they can request Settings UI allowing the user to toggle NDEF Push using startActivity(new Intent(Settings.ACTION_NFCSHARING_SETTINGS))
Example usage in an Activity that requires NDEF Push:
java Example
protected void onResume() { super.onResume(); if (!nfcAdapter.isEnabled()) { startActivity(new Intent(Settings.ACTION_NFC_SETTINGS)); } else if (!nfcAdapter.isNdefPushEnabled()) { startActivity(new Intent(Settings.ACTION_NFCSHARING_SETTINGS)); } }