Android NfcV get information command returns only one byte
问题 I'm writing an app for reading binary infos of NFC tags. Here's the code of the NFC intent handler function: protected void onNewIntent(@NonNull Intent intent) { try { Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG); NfcV nfcV = NfcV.get(tag); byte[] cmdInfo = new byte[]{(byte) 0x02, (byte) 0x2b}; // 'Get info' command byte[] answer = nfcV.transceive(cmdInfo); // Read info from tag. ... } catch(IOException e) { ... } } If I run this function reading an NFC tag on a Samsung S3 Neo