I am a new in developing area. Thanks in advance for your time. I am trying to deal with the results after scanning a QR image. I am using the Zxing library. Right now only the content string can retrieve any data. But I want to scan a qr image to get the URL, telno and a string /text(which will be a numbered amount). Could you pls show that with an example how can i get the data for telno and text both and store in strings. For now there is only one SCAN_RESULT which is stored in contents, but how can I get multiple results at a time from one QR code.
Thanks again. Below is the code for
private void onQrActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
if (requestCode == 0) {
if (resultCode == RESULT_OK) {
Log.d(TAG, "onActivityResult " + resultCode);
String contents = data.getStringExtra("SCAN_RESULT");
String format = data.getStringExtra("SCAN_RESULT_FORMAT");
paymentmsg.setText(contents);
value_Qr = Float.parseFloat(contents);
// Toast.makeText(this, format, Toast.LENGTH_SHORT).show();
format = data.getStringExtra("SCAN_RESULT_FORMAT");
// Handle successful scan
}
else if (resultCode == RESULT_CANCELED) {
// Handle cancel
}
}
}

SCAN_RESULT. If you wish to have a strange QR code with multiple parts, that's fine, but you still will only get oneSCAN_RESULTwith whatever combined string you put in the QR code, and you will have to be the one to parse that string into whatever it is you put in there. – CommonsWare May 28 '12 at 18:08