1

嗨,我正在尝试从 NFC 标签读取。但我遇到了一个例外。

我已经把这个条件来检测标签了?

if(NfcAdapter.ACTION_TAG_DISCOVERED != null)

这个条件是否正确?

4

4 回答 4

3

首先,您必须初始化 NFC 适配器并在 onCreate 回调中定义 Pending Intent:

NfcAdapter mAdapter;
PendingIntent mPendingIntent;
mAdapter = NfcAdapter.getDefaultAdapter(this);

if (mAdapter == null) {
    //nfc not support your device.
    return;
}
mPendingIntent = PendingIntent.getActivity(this, 0, new Intent(this,
    getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);

在 onResume() 回调中启用 Foreground Dispatch 以检测 NFC 意图。

mAdapter.enableForegroundDispatch(this, mPendingIntent, null, null);

在 onPause() 回调中,您必须禁用前台调度:

if (mAdapter != null) {
    mAdapter.disableForegroundDispatch(this);
}

在 onNewIntent() 回调方法中,您将获得新的 Nfc Intent。得到 Intent 后,你必须解析意图来检测卡片:

@Override
protected void onNewIntent(Intent intent) {
    getTagInfo(intent)
}

private void getTagInfo(Intent intent) {
    Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);

    String[] techList = tag.getTechList();
    for (int i = 0; i<techList.length; i++) {
        if (techList[i].equals(MifareClassic.class.getName())) {

            MifareClassic mifareClassicTag = MifareClassic.get(tag);
            switch (mifareClassicTag.getType()) {
                case MifareClassic.TYPE_CLASSIC:
                    //Type Clssic
                    break;
                case MifareClassic.TYPE_PLUS:
                    //Type Plus
                    break;
                case MifareClassic.TYPE_PRO:
                    //Type Pro
                    break;
            }
        } else if (techList[i].equals(MifareUltralight.class.getName())) {
            //For Mifare Ultralight
            MifareUltralight mifareUlTag = MifareUltralight.get(tag);
            switch (mifareUlTag.getType()) {
                case MifareUltralight.TYPE_ULTRALIGHT:
                    break;
                case MifareUltralight.TYPE_ULTRALIGHT_C:

                    break;
            }
        } else if (techList[i].equals(IsoDep.class.getName())) {
            // info[1] = "IsoDep";
            IsoDep isoDepTag = IsoDep.get(tag);

        } else if (techList[i].equals(Ndef.class.getName())) {
            Ndef.get(tag);

        } else if (techList[i].equals(NdefFormatable.class.getName())) {

            NdefFormatable ndefFormatableTag = NdefFormatable.get(tag);

        }
    }
}

完整的完整代码在这里

于 2015-02-17T15:48:31.333 回答
2

要回答您有关代码的问题-

这将永远是真的 -NfcAdapter.ACTION_TAG_DISCOVERED是一个常数值 - 你需要使用:

getIntent().getAction().equals(NfcAdapter.ACTION_TAG_DISCOVERED) 

比较它。

但是,这可能与您的例外无关 -

  1. 你在你的android清单中包含了NFC权限吗?
  2. 你确定你的手机支持NFC吗,目前只有两三个支持。
  3. 我们需要您的日志中的堆栈跟踪来了解导致异常的原因
于 2012-09-07T07:30:38.630 回答
1

这种说法永远是正确的。

我创建了一个项目,其中包含一个样板项目,以便走上正轨。

于 2012-09-17T22:54:39.577 回答
0

试试下面的工作代码。

 /**
 * this method is used for read nfc data from tag.
 *
 * @param ndef Ndef
 */
private void readFromNFC(Ndef ndef) {

    try {
        ndef.connect();
        NdefMessage ndefMessage = ndef.getNdefMessage();

        NdefRecord[] e = ndefMessage.getRecords();

        for (NdefRecord s : e) {
            String message = new String(s.getPayload());
            if (!message.equals("")) {
                CustomLog.info(TAG, "readFromNFC: " + message);
                mTvMessage.setText(message);
            } else {
                mTvMessage.setText("Tag is empty!");
            }
        }
        ndef.close();
    } catch (IOException | FormatException e) {
        e.printStackTrace();
    }
}
于 2020-02-24T13:51:49.443 回答