Android NFC开发的那些坑

扫描NFC标签,弹出的选择APP列表中不存在当前APP

在AndroidManifest.xml中,对应的Activity添加了一个meta-data标签,如下

其中“@xml/tag_type”,根据Android官方文档,对应的文件内容如下



    
        android.nfc.tech.IsoDep
        android.nfc.tech.NfcA
        android.nfc.tech.NfcB
        android.nfc.tech.NfcF
        android.nfc.tech.NfcV
        android.nfc.tech.Ndef
        android.nfc.tech.NdefFormatable
        android.nfc.tech.MifareClassic
        android.nfc.tech.MifareUltralight
    

按照这种方式,扫描NFC标签之后,弹出的选择列表中,是不包含当前APP的,将“@xml/tag_type”文件修改为如下样式就可已经解决这个问题



    
        android.nfc.tech.IsoDep
    

    
        android.nfc.tech.NfcA
    

    
        android.nfc.tech.NfcB
    

    
        android.nfc.tech.NfcF
    

    
        android.nfc.tech.NfcV
    

    
        android.nfc.tech.Ndef
    

    
        android.nfc.tech.NdefFormatable
    

    
        android.nfc.tech.MifareClassic
    

    
        android.nfc.tech.MifareUltralight
    


不知道为什么,Android的官方文档写的方式是不起作用的


当再次扫描NFC标签时,当前Activity会首先执行onDestroy(),然后再执行onCreate(),而非执行onNewIntent()

    @SuppressLint("NewApi")
    protected void onResume() {
        // TODO Auto-generated method stub
        super.onResume();
        if (nfcAdapter != null)
            nfcAdapter.enableForegroundDispatch(this, pendingIntent, FILTERS, TECHLISTS);
    }

FILTERS参数,是一个IntentFilter数组,需要将三种类型的Filter全都添加进去才可以。

另外,对应的TECHLISTS参数,也需要将对应卡片的类型添加进去才可以。


另外,HTML编辑器真难用,没有markdown好用。

你可能感兴趣的:(技巧备份)