NDEFRecord[] records = _message.getRecords();
try {
Utilities.log("XXXX using helper classes to parse NDEF message");
SmartPosterRecord sp = new SmartPosterRecord(records[0]);
String uri = sp.getUri();
String id = sp.getId();
String mime = sp.getMimeType();
int size = sp.getSize();
String type = sp.getType();
byte [] payload = sp.getPayload();
// _screen.logEvent("id="+id);
_screen.logEvent("type="+type);
_screen.logEvent("URI="+uri);
// _screen.logEvent("MIME="+mime);
// _screen.logEvent("size="+size);