I have some documentation that doesn’t have any intuitive examples for me
http://developer.android.com/reference/android/nfc/tech/NfcV.html
http://developer.android.com/reference/android/nfc/Tag.html
I need to declare objects of type NfcV and of type Tag , but when I try to do something like NfcV myNFCObject = new NfcV(); the IDE says “constructor NfcV is not visible. So my next try looked like this NfcV myNFCObject = NfcV.getTag(new Tag()); and I get the error “constructor Tag()” is not visible.
So thats where I hit a wall, just from looking at both of the documentation links, I do not see how to declare these objects! How would this be done?
Thanks!
Firstly you must create a class which implements TagTechnology interface. Then you can get tag with it.
then you can use like this