有谁知道如何编写代码来读取空的 NFC 标签?我需要使用什么类型的意图过滤器来读取空标签?如果有人可以提供一些示例代码,我将不胜感激。我正在使用 Ultralight C 标签。
问问题
1598 次
1 回答
0
可以使用MifareUltralight
该类访问 MIFARE Ultralight 标签。更具体地使用该方法,请参阅http://developer.android.com/guide/topics/connectivity/nfc/advanced-nfc.html#read-writereadPages()
处的示例代码
向您的清单添加技术列表引用,如http://developer.android.com/guide/topics/connectivity/nfc/nfc.html#tech-disc中所述
在您输入的nfc_tech_filter.xml
文件(存储在子目录中res/xml
)中:
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<tech-list>
<tech>android.nfc.tech.MifareUltralight</tech>
</tech-list>
于 2012-08-17T15:09:54.317 回答