문제

I have leveraged the ZXing barcode scanner intent, but it will only scan App barcodes (the barcodes that you take a picture of and it installs the app on your phone). I want it to be able to scan the barcodes of everyday objects, such as those found on soda cans and boxes of food. When I put it up to a normal barcode it won't detect it.

Here is the code for when I call the intent.

            public void onClick(View v) {

            //Link to the Barcode Scanner intent.
            Intent intent = new Intent("com.google.zxing.client.android.SCAN");
            intent.putExtra("SCAN_MODE", "QR_CODE_MODE");         

            startActivityForResult(intent, 0);

        }

Can you tell me what I'm doing wrong? Any help is appreciated.

도움이 되었습니까?

해결책

Leave out the SCAN_MODE extra and it will scan anything it understands.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top