Package nfc.sample.tictactoe.protocol

Examples of nfc.sample.tictactoe.protocol.ProtocolMessage


    public void onNDEFMessageDetected(NDEFMessage msg) {
        NDEFRecord[] records = msg.getRecords();
        if (records.length > 0) {
            byte[] payload = records[0].getPayload();
            Utilities.log("XXXX NfcReceiver payload=" + ByteArrayUtilities.byteArrayToHex(payload));
            ProtocolMessage pmsg = ProtocolMessage.makeMessage(payload);
            _processor.gameMessage(pmsg);
        }
       
    }
View Full Code Here

TOP

Related Classes of nfc.sample.tictactoe.protocol.ProtocolMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.