我刚接触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+")");
                    }
                }
            }
        }
    }
}


这里有两个问题:


结果告诉前台调度程序仅捕获TECH_DISCOVERED(带有techList)和TAG_DISCOVERED(不带有techList),但是错过了NDEF_DISCOVERED。
当我离开应用程序并扫描NFC标签时,它会自动将我带到网站(我将网址作为记录)。它如何告诉该记录包含打开浏览器或拨打电话的动作?

最佳答案

通常,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)
};


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

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




请注意,在前台分派系统中,您通常只会注册要匹配的最通用的Intent过滤器。因此,如果您的前台调度意图过滤器已经包含动作TAG_DISCOVERED,则无需添加任何其他特定的过滤器(例如TECH_DISCOVEREDNDEF_DISCOVERED),因为您的活动将已经收到任何发现的标记。与TECH_DISCOVERED标记技术结合使用的Ndef同样如此:它已经包含任何会触发NDEF_DISCOVERED的标记。但是,请注意,TAG_DISCOVERED意图过滤器是特殊的,因为与前台调度一起使用时,它表示“全部捕获”,而意味着“仅回退”(即,只有在与其他任何应用程序没有更好的匹配时才匹配)在基于清单的意图过滤器中使用时。

关于android - 为什么总是TECH_DISCOVERED或TAG_DISCOVERED而不是NDEF_DISCOVERED?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26708009/

10-08 21:23