I just imported the ZXing library in my app, I know how to set up the putExtra function to scan QR-Code barcode:

INTENT = new Intent("com.google.zxing.client.android.SCAN");
INTENT.putExtra("SCAN_MODE", "QR_CODE_MODE");
startActivityForResult(INTENT, 0);

and if I like to scan a 1D barcode:

INTENT = new Intent("com.google.zxing.client.android.SCAN");
INTENT.putExtra("SCAN_MODE", "PRODUCT_MODE");
startActivityForResult(INTENT, 0);

but how do I make the App able to scan both?? (1D and 2D barcode).

Thanks! Marco

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

If you just want to scan both (and not exclusively these two):

Don't add the SCAN_MODE extra to the intent. Thats optional to limit the type of barcode to a certain type. Not specifying it will scan all possible types.

link|improve this answer
Thanks I didn't know I could do that :) Works perfectly! – Marco Matarazzi Aug 29 '11 at 17:44
feedback

I recommend using IntentIntegrator it is a class the Zxing project has that I am using with one of my apps. I have provided a link to the file. It encapsulates the scan code and is great for simple scanning function. initiateScan method is where you want to look. Enjoy!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.