有没有人知道如何编写代码来读取空NFC标签?我需要使用什么类型的intent-filter来读取空标签?如果有人能提供一些示例代码,我将不胜感激。我正在使用Ultralight C标签。
答案 0 :(得分:0)
可以使用MifareUltralight
类访问MIFARE Ultralight标记。更具体地说,使用readPages()
方法,请参阅http://developer.android.com/guide/topics/connectivity/nfc/advanced-nfc.html#read-write
按照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>