In NfcA standard there is an android.nfc.tech.IsoDep class. It has a method called: getHistoricalBytes(). How to get this functionality in NfcV standard? IsoDep class doesn't work here. Any ideas? Help will be appreciated.

有帮助吗?

解决方案

NfcV (ISO15693) technology doesn't has anything like HistoricalBytes. HistoricalBytes only exist in the NfcA (ISO14443-A) standard.

The only static thing you can read from a NfcV Tag is the UID and the DSF-ID (data structure format identifier, often not used). You get it by casting your tag object to an NfcV object and then call getDsfID()

http://developer.android.com/reference/android/nfc/tech/NfcV.html

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top