如何使用NDEF消息过滤所有标记。 我试过这个
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
但它仅适用于aditional <data .../>
字段
答案 0 :(得分:0)
是的,这不适用于所有Android版本。
您可以使用针对操作Ndef
的意图过滤器和带有该定义的XML文件来过滤ACTION_TECH_DISCOVERED
技术,有关文档,请参阅http://developer.android.com/guide/topics/connectivity/nfc/nfc.html#tech-disc。