为什么总是TECH_DISCOVERED或TAG_DISCOVERED而不是NDEF_DISCOVERED?

时间:2014-11-03 04:57:45

标签: android nfc intentfilter ndef

我刚接触Android的NFC新手。我有几个问题。首先,让我介绍一下代码。在我的程序中,它只是从记录中检索有效负载并将它们记录为字符串。

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    adapter = NfcAdapter.getDefaultAdapter(this);
    nfcPendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP),  0);
    nfcFilter = new IntentFilter[]{
                new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED),
                new IntentFilter(NfcAdapter.ACTION_TECH_DISCOVERED),
                new IntentFilter(NfcAdapter.ACTION_TAG_DISCOVERED)
            };
    techList = new String[][]{{Ndef.class.getName()}};
}

@Override
public void onResume(){
    super.onResume();

    if (adapter != null){
        adapter.enableForegroundDispatch(this, nfcPendingIntent, nfcFilter, techList);
        if (!adapter.isEnabled()){
            Toast.makeText(this, "please enable your nfc", Toast.LENGTH_SHORT).show();
        }
    } else {
        Toast.makeText(this, "your device do not have nfc.", Toast.LENGTH_SHORT).show();
    }
}

@Override
public void onPause(){
    super.onPause();
    if (adapter != null){
        adapter.disableForegroundDispatch(this);
    }
}

@Override
protected void onNewIntent(Intent intent){
    String TAG = "onNewIntent";
    super.onNewIntent(intent);

    Log.d(TAG, "action: "+intent.getAction());
    //Log.d(TAG, "type: "+intent.getType());
    if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(intent.getAction())){
        Parcelable[] rawMsg = intent.getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES);
        if (rawMsg != null){
            for (int i=0; i<rawMsg.length; i++){
                NdefMessage msg = (NdefMessage)rawMsg[i];
                NdefRecord[] records = msg.getRecords();
                for (int j=0; j<records.length; j++){
                    Log.d(TAG, records[j].toMimeType()+"");
                    byte [] payload = records[j].getPayload();
                    if (payload != null && payload.length > 0){
                        Log.d(TAG, new String(payload, 1, payload.length-1));
                    }
                }
            }
        }
    } else if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(intent.getAction())){

    } else if (NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())){
        Parcelable[] rawMsg = intent.getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES);
        if (rawMsg != null){
            for (int i=0; i<rawMsg.length; i++){
                NdefMessage msg = (NdefMessage)rawMsg[i];
                NdefRecord[] records = msg.getRecords();
                for (int j=0; j<records.length; j++){
                    Log.d(TAG, records[j].toMimeType()+"");
                    byte [] payload = records[j].getPayload();
                    if (payload != null && payload.length > 0){
                        Log.d(TAG, new String(payload, 1, payload.length-1)+"("+j+")");
                    }
                }
            }
        }
    }
}

这里有两个问题:

  1. 结果告诉前台调度程序只捕获TECH_DISCOVERED(使用techList)和TAG_DISCOVERED(没有techList)但是错过了NDEF_DISCOVERED。

  2. 当我离开应用程序并扫描NFC标签时,它会自动将我带到网站(我将网址作为记录)。它如何告诉此记录包括打开浏览器或拨打电话的操作?

1 个答案:

答案 0 :(得分:3)

NDEF_DISCOVERED意图过滤器通常(似乎存在一些例外)仅匹配,如果它具有与标记上的NDEF消息匹配的关联数据类型。因此,例如,数据类型规范*/*将匹配任何MIME类型:

IntentFilter ndef = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);
try {
    ndef.addDataType("*/*");
} catch (MalformedMimeTypeException e) {}
nfcFilter = new IntentFilter[]{
        ndef,
        new IntentFilter(NfcAdapter.ACTION_TECH_DISCOVERED),
        new IntentFilter(NfcAdapter.ACTION_TAG_DISCOVERED)
};

同样,如果您只想触发特定网址http://www.example.com/,则可以使用:

IntentFilter ndef = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);
ndef.addDataScheme("http");
ndef.addDataAuthority("www.example.com", null);

注意 - 使用前台调度系统 - 您通常只会注册要匹配的最通用的意图过滤器。因此,如果您的前台调度意图过滤器已包含操作TAG_DISCOVERED,则无需添加任何更具体的过滤器(例如TECH_DISCOVEREDNDEF_DISCOVERED),因为您的活动已经收到任何发现标签。同样适用于TECH_DISCOVEREDNdef代码技术相结合:这已包含任何会触发NDEF_DISCOVERED的代码。但请注意,TAG_DISCOVERED意图过滤器的特殊之处在于,当与前台调度一起使用时,它意味着“全部捕获”,而它意味着“仅后备”(即只有在与其他任何内容没有更好的匹配时才匹配) app)在基于清单的意图过滤器中使用时。