I want to integrate the zxing source code to my Android application. I have downloaded the zxing1.5 and integrate the whole code to my application and I am calling the activity “CaptureActivity” through intent.
It is showing only the camera view but it is not scanning the barcode. How can I solve this problem – I want my application to be stand alone. I don’t want to install BarcodeScanner.apk separately in the device.
I don’t think
CaptureActivityis what you want – instead, you should be usingcom.google.zxing.client.android.SCAN.See the article How to scan a barcode from another Android application via Intents for code samples, and links to further related articles.