Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been searching on how to add a barcode scanner to my app. Does anybody know of any examples or know how to do this easily? Any help is greatly appreciated.

share|improve this question

4 Answers

up vote 132 down vote accepted

The ZXing project provides a standalone barcode reader application which — via Android's intent mechanism — can be called by other applications who wish to integrate barcode scanning.

The easiest way to do this is to call the ZXing SCAN Intent from your application, like this:

public Button.OnClickListener mScan = new Button.OnClickListener() {
    public void onClick(View v) {
        Intent intent = new Intent("com.google.zxing.client.android.SCAN");
        intent.putExtra("SCAN_MODE", "QR_CODE_MODE");
        startActivityForResult(intent, 0);
    }
};

public void onActivityResult(int requestCode, int resultCode, Intent intent) {
    if (requestCode == 0) {
        if (resultCode == RESULT_OK) {
            String contents = intent.getStringExtra("SCAN_RESULT");
            String format = intent.getStringExtra("SCAN_RESULT_FORMAT");
            // Handle successful scan
        } else if (resultCode == RESULT_CANCELED) {
            // Handle cancel
        }
    }
}

Pressing the button linked to mScan would launch directly into the ZXing barcode scanner screen (or crash if ZXing isn't installed). Once a barcode has been recognised, you'll receive the result in your Activity, here in the contents variable.

To avoid the crashing and simplify things for you, ZXing have provided a utility class which you could integrate into your application to make the installation of ZXing smoother, by redirecting the user to the Android Market if they don't have it installed already.

Finally, if you want to integrate barcode scanning directly into your application without relying on having the separate ZXing application installed, well then it's an open source project and you can do so! :)

share|improve this answer
4  
(I'm the project dev BTW -- we can continue at groups.google.com/group/zxing) Christopher is right. By using code like that you don't need to import any project code at all. You are calling out to the Barcode Scanner app via Intent; no barcode scanning code in your app. – Sean Owen Jan 13 '10 at 18:46
9  
The really nice way to do it involves a little more code, which will make sure the user is cleanly prompted to install Barcode Scanner if necessary. That's the other link he referred to. Copy the class at code.google.com/p/zxing/source/browse/trunk/android-integration/… and use that. Again no other code needed. If you want you can go all the way and embed the scanning code, but without a hard reason to do it, it's only harder for you. – Sean Owen Jan 13 '10 at 18:47
1  
So to use this IntentIntegrator I have to copy it into my project (in that case svn:externals might be a good idea to avoid keeping a stale version)? – obvio171 Apr 11 '10 at 18:05
2  
Yes, you'd need to copy it (taking note of the Apache Licence requirements). Though it's so simple, I wouldn't bother with keeping up-to-date via svn:externals or anything. – Christopher Apr 11 '10 at 21:55
1  
Using this, if i scan a barcode, it adds the scanned content to barcode scanner app, can i disable that? – Seshu Vinay Dec 14 '11 at 10:05
show 6 more comments

I had a problem with implimenting the code until I found some website (I can't find it again right now) that explained that you need to include the package name in the name of the intent.putExtra.

It would pull up the application but wouldn't recognize any barcodes, and when I changed it from.

intent.putExtra("SCAN_MODE", "QR_CODE_MODE");

to

intent.putExtra("com.google.zxing.client.android.SCAN.SCAN_MODE", "QR_CODE_MODE");

It worked great. Just a tip for any other novice andorid programmers.

share|improve this answer
I could not get this working until I followed this answer- so it seems it is essential to do this. Thanks for the tip! – Casper Apr 26 '12 at 12:14

Using the provided IntentInegrator is better. It allows you to prompt your user to install the barcode scanner if they do not have it. It also allows you to customize the messages. The IntentIntegrator.REQUEST_CODE constant holds the value of the request code for the onActivityResult to check for in the above if block.

 IntentIntegrator.initiateScan(YourActivity); 

IntentIntegrator.java

share|improve this answer

If you want to include into your code and not use the IntentIntegrator that the Zxing library recomend you can use some of this ports

http://code.google.com/p/android-zxinglib/

http://code.google.com/p/android-quick-response-code/

I use the first and works perfect! It has a sample project to try it

share|improve this answer

protected by Community Jun 11 '11 at 22:48

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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