super.onCreate(savedInstanceState);
Log.d(LOG_TAG, "activity created!!");
Intent in = getIntent();
byte[] body;
byte[] header;
body = in.getByteArrayExtra("data");
header = in.getByteArrayExtra("header");
Log.d(LOG_TAG, "header:");
Log.d(LOG_TAG, HexDump.dumpHexString(header));
Log.d(LOG_TAG, "body:");
Log.d(LOG_TAG, HexDump.dumpHexString(body));
DataVerify.SetLastReceivedPdu(body);
finish();