I'm trying to develop an App witch get 1d bar codes number using Zxing lib. I download the lib and I compiled it with ant. Them, I include the core.jar into my app source.
Now, I wan't to get the number of the bar code, and I use the following java code:
Intent barscan = new Intent("com.google.zxing.client.android.SCAN");
barscan.putExtra("SCAN_WIDTH", 300);
barscan.putExtra("SCAN_HEIGHT", 200);
barscan.putExtra("RESULT_DISPLAY_DURATION_MS", 3000L);
barscan.putExtra("PROMPT_MESSAGE", "Custom prompt to scan a product");
barscan.putExtra("SCAN_MODE", "ONE_D_MODE");
startActivityForResult(barscan, 0);
But with this code I have some problems:
- I can't see the red line across the screen.
- I want to scan the barcode and return, but that only happens with QR codes. With 1d bar codes nothing happen.
What is wrong?
Thank everyone for your time!