List of usage examples for android.nfc NfcAdapter STATE_TURNING_OFF
int STATE_TURNING_OFF
To view the source code for android.nfc NfcAdapter STATE_TURNING_OFF.
Click Source Link
From source file:be.brunoparmentier.wifikeyshare.ui.activities.WifiNetworkActivity.java
void initializeNfcStateChangeListener() { nfcStateChangeBroadcastReceiver = new BroadcastReceiver() { @Override/*from w w w .ja v a 2s. c o m*/ public void onReceive(Context context, Intent intent) { final String action = intent.getAction(); if (action.equals(NfcAdapter.ACTION_ADAPTER_STATE_CHANGED)) { final int state = intent.getIntExtra(NfcAdapter.EXTRA_ADAPTER_STATE, NfcAdapter.STATE_OFF); switch (state) { case NfcAdapter.STATE_OFF: case NfcAdapter.STATE_TURNING_OFF: onNfcDisabled(); break; case NfcAdapter.STATE_TURNING_ON: break; case NfcAdapter.STATE_ON: onNfcEnabled(); break; } } } }; }