读取空的NFC标签

时间:2012-08-17 02:44:59

标签: android nfc

有没有人知道如何编写代码来读取空NFC标签?我需要使用什么类型的intent-filter来读取空标签?如果有人能提供一些示例代码,我将不胜感激。我正在使用Ultralight C标签。

1 个答案:

答案 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>