Use the code below to get the NFCAdapter.
NfcAdapter nfcAdpt = NfcAdapter.getDefaultAdapter(this);
if(nfcAdpt!=null)
{
if(nfcAdpt.isEnabled())
{
}
else
{
}
}
If you want to go to the NFC user settings, use the code below
Intent setnfc = new Intent(Settings.ACTION_WIRELESS_SETTINGS);
startActivity(setnfc);
NFC API 7.
<uses-sdk android:minSdkVersion="10" />
<uses-sdk android:maxSdkVersion="16"/>