我正在使用NFC从使用jmrtd库的护照中读取RFID。问题是我想在成功读取数据后停止接收与nfc相关的意图,但是当前即使某些其他活动在前台,app也会在标记发现时重新启动nfc读取活动。
我的代码:
protected void onResume() {
super.onResume();
this.mAdapter.enableForegroundDispatch(this, this.mNfcListener, mIntentFilters, null);
}
//<editor-fold desc="NFC">
public boolean initNFC() {
this.mAdapter = NfcAdapter.getDefaultAdapter(this);
if (this.mAdapter == null) {
return false;
}
Intent i = new Intent(this, getClass());
i.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
this.mNfcListener = PendingIntent.getActivity(this, 0, i, 0);
IntentFilter tagFilter = new IntentFilter(NfcAdapter.ACTION_TAG_DISCOVERED);
IntentFilter ndefFilter = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);
this.mIntentFilters = new IntentFilter[]{tagFilter, ndefFilter};
return true;
}
protected void onPause() {
mAdapter.disableForegroundDispatch(this);
super.onPause();
}
答案 0 :(得分:0)
这是不可能的...... 因为您的活动具有意图过滤操作NDEF_DISCOVERED。
读这个...... How to detect NFC tag was removed