As I know when an Android phone gets an NFC tag touched, it will send an event (NDEF_DISCOVERED intent), but Android doesn\'t seem to care whether this tag is staying in pla
There is a function that checks to see if the card is still connected called isConnected(). Can be used like this:
isConnected()
try { ndef.connect(); while(ndef.isConnected()){ //Your code here } } catch (IOException e) { //Error }