android: zxing barcode scan successful but not returning from activity android: zxing barcode scan successful but not returning from activity android android

android: zxing barcode scan successful but not returning from activity


Here's the full answer to my own question, hope this helps someone:

Go here and copy the whole IntentIntegrator class, add it to your app; also go here and copy the IntentResult class to your app. Now add this to your activity (or trigger the scan by a button / whatever):

public boolean onTouchEvent(final MotionEvent event) {    IntentIntegrator integrator = new IntentIntegrator(this);    integrator.initiateScan();    return true;    }public void onActivityResult(int requestCode, int resultCode, Intent intent) {      IntentResult scanResult = IntentIntegrator.parseActivityResult(requestCode, resultCode, intent);      if (scanResult != null) {        // handle scan result          String s = "http://www.google.com/search?q=";            s += scanResult.getContents();            Intent myIntent1 = new Intent(Intent.ACTION_VIEW, Uri.parse(s));            startActivity(myIntent1);      }      // else continue with any other code you need in the method      //...    }

It would have been great to just call the services provided by the Barcode scanner app and not copy and paste chunks of code into your own app but this seems to be the recommended way :(


Why not use the provided IntentIntegrator class? This is the only approach mentioned in the project docs, did you have a look at those? https://github.com/zxing/zxing/wiki/Scanning-Via-Intent

I created it to wrap up these details of sending and parsing the Intent, so you don't make typos. For example, there's no such thing as extra "com.google.zxing.client.android.SCAN.SCAN_MODE".


Add finishActivity(requestCode); at the end of onActivityResult() method.

Try this:Replace your first 2 lines in onTouch with the below code. It seems the issue is while scanning codes other than QR. Please remove the scan filter and check once.

Intent intent = new Intent("com.google.zxing.client.android.SCAN");intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);