zxing

ZXing doesn't read 1D barcode in Android app

I am developing a new application which hopefully will use a barcode reader to scan and find books. I will then use the ISBN information to get more information. The intents work and I can scan 2d barcodes ok but not the 1d barcodes of books which I know scan fine using the full application. This is my code. I have tried it without pu...

Detecting QR code from an image with zxing

Is zxing library will directly detect the QR code from an image without having to determine where the location of the QR code in the image? ...

How to I launch an activity with an Intent and pass a variable in the new activity?

So right now I'm using the zxing barcode scanner in my app. Here is example code(generic): if(position == 0){ Intent intent = new Intent("com.google.zxing.client.android.SCAN"); intent.putExtra("SCAN_MODE", "QR_CODE_MODE"); startActivityForResult(intent, 0); } public void onActivityResult(i...