2

我希望我的应用仅在激活时才收听 nfc 标签。为此,我尝试如下注册一个 nfc 侦听器,但没有成功。

IntentFilter filter = new IntentFilter("android.nfc.action.TECH_DISCOVERED"); 
registerReceiver(nfcTagListener, filter); 

BroadcastReceiver nfcTagListener = new BroadcastReceiver() {

        @Override
        public void onReceive(Context context, Intent intent) { 
            String action = intent.getAction(); 

            if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(action)) { 
                Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);  
                Log.d("nfc", "" + tag.getId());     
            }
        }
    };

我也尝试按照 apidemo 在清单中声明意图并完美运行,它启动我的活动并获取 nfc 标签 ID。但这不是我想要的,我只想在该活动中检测标签 ID。我认为它可能与 api 演示中包含的以下行有关。但我不知道如何以编程方式做到这一点

      <meta-data android:name="android.nfc.action.TECH_DISCOVERED"
            android:resource="@xml/filter_nfc"> 

有什么提示吗?

谢谢!

4

2 回答 2

6

尝试使用前台调度系统。

要启用它,在活动的 onCreate 方法上,您应该准备一些东西:

PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this,
                getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);

之后,创建 IntentFilters(在我的示例中,所有操作都使用 Intent Filters 处理):

    IntentFilter ndef = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);
    try {
        ndef.addDataType("*/*");
    } catch (MalformedMimeTypeException e) {
        throw new RuntimeException("fail", e);
    }

    IntentFilter tech = new IntentFilter(NfcAdapter.ACTION_TECH_DISCOVERED);
    try {
        tech.addDataType("*/*");
    } catch (MalformedMimeTypeException e) {
        throw new RuntimeException("fail", e);
    }

    IntentFilter[] intentFiltersArray = new IntentFilter[] { tag, ndef, tech };

之后,您需要一个字符串数组来包含支持的技术:

    String[][] techList = new String[][] { new String[] { NfcA.class.getName(),
            NfcB.class.getName(), NfcF.class.getName(),
            NfcV.class.getName(), IsoDep.class.getName(),
            MifareClassic.class.getName(),
            MifareUltralight.class.getName(), Ndef.class.getName() } };

在 onResume 方法中,您应该启用前台调度方法:

NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(this);
nfcAdapter.enableForegroundDispatch(this, pendingIntent, intentFiltersArray, techList);

并在 onPause 中禁用:

@Override
protected void onPause() {
    super.onPause();
    nfcAdapter.disableForegroundDispatch(this);
}

通过这种方式,您已经成功地初始化了所需的机制。要处理收到的 Intent,您应该重写 onNewIntent(Intent intent) 方法。

@Override
public void onNewIntent(Intent intent) {
    String action = intent.getAction();

    if (NfcAdapter.ACTION_TAG_DISCOVERED.equals(action)) {
        // reag TagTechnology object...
    } else if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(action)) {
        // read NDEF message...
    } else if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(action)) {

    }
}

注意:如果您只想通过前台调度来处理意图,请不要在清单文件中启用 Intent Dispatch System,只需在此处为您的应用程序授予正确的权限即可。

我希望这会有所帮助。

于 2011-04-19T08:14:56.680 回答
0

如果您不想使用前台模式,您可以随时以编程方式启用或禁用意图过滤器。

Android 项目的NDEF 工具有使用前台模式的工作示例,还检测到

  1. NFC 设备支持
  2. NFC 在活动启动时启用/禁用,或稍后更改
  3. 在活动启动时启用/禁用 NFC 推送,或稍后更改
于 2012-11-26T21:52:25.933 回答