MobileVisionBarcodeScanner icon indicating copy to clipboard operation
MobileVisionBarcodeScanner copied to clipboard

QR Code scanner is not Retrieval

Open novinestore opened this issue 6 years ago • 2 comments

Hello, Thanks for your great work! barcodeCapture open camera and preview camera but not work retrieval on samsung device (J7 pro), but work on huawei or samsung j7!

code: `barcodeCapture.setShowDrawRect(true); barcodeCapture.setAllowEnterTransitionOverlap(true); barcodeCapture.setShowDrawRect(true); barcodeCapture.setSupportMultipleScan(false); barcodeCapture.setTouchAsCallback(false); barcodeCapture.shouldAutoFocus(true); barcodeCapture.setBarcodeFormat(Barcode.ALL_FORMATS); barcodeCapture.setCameraFacing(CameraSource.CAMERA_FACING_BACK);

    barcodeCapture.setRetrieval(new BarcodeRetriever() {
                @Override
                public void onRetrieved(Barcode barcode) {
                     _barcode_value = barcode.displayValue;
                    _func_send_barcode();
                }

                @Override
                public void onRetrievedMultiple(Barcode closetToClick, List<BarcodeGraphic> barcode) {
                    _barcode_value = barcode.get(0).getBarcode().displayValue;
                    _func_send_barcode();
                }

                @Override
                public void onBitmapScanned(SparseArray<Barcode> sparseArray) {

                }

                @Override
                public void onRetrievedFailed(String reason) {
                }

                @Override
                public void onPermissionRequestDenied() {

                }
            });

    barcodeCapture.refresh();`

novinestore avatar Dec 04 '18 09:12 novinestore

xml: <fragment android:id="@+id/barcode" android:name="com.google.android.gms.samples.vision.barcodereader.BarcodeCapture" android:layout_width="fill_parent" android:layout_height="fill_parent" app:gvb_auto_focus="true" app:gvb_code_format="all_format" app:gvb_draw="true" app:gvb_multiple="false" app:gvb_touch="false" app:gvb_rect_colors="@array/rect_color" />

novinestore avatar Dec 04 '18 09:12 novinestore

I have same problem. Meizu Pro 6

Rogdan avatar Dec 18 '18 15:12 Rogdan