I need to enable NFC if it is OFF when launch my APP. I found this way but I need turn on when launch my app automatcly.
if (nfcAdapter == null) {
// NFC is not available for device
alertDialogNfc( "Sorry! This device do not support NFC" );
} else if (!nfcAdapter.isEnabled()) {
// NFC is available for device but not enabled
alertDialogNfc( "Please, turn on the NFC" );
startActivity(new Intent("android.settings.NFC_SETTINGS"));
}