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.
|
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
Pressing the button linked to 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! :) |
|||||||||||||||||||||
|
|
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.
to
It worked great. Just a tip for any other novice andorid programmers. |
|||
|
|
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.
|
|||
|
|
|
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 |
|||
|
|
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.