-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Laser Scan is not working after triggering Zxing CameraBarcodeReaderView. #181
Comments
I am having same issue to resolve. workaround Exception is: |
I have found a workaround for this. private async Task<ICameraInternal?> GetCameraPreview(CameraBarcodeReaderView cameraBarcodeReaderView) You can call the above method in ondisappearing like This will work in all scenarios except one scenario. If we use camera to scan and lock the screen and unlock it then laser stopped working. I have to kill the app or open the camera and then laser started working. I am yet to find the reason and solution for this scenario. Hope this would help you. |
I am using the CameraBarcodeReaderView(Zxing) in my xaml for barcodesDetected. We also use laser scan for scanning. Laser scan is working until the zxing is triggered. Once zxing is used, laser scan stopped working.
I used unloaded event to disconnect the handler, but it is not working even then.
barcodeReader?.Handler?.DisconnectHandler();
Please provide any workaround for this. Thanks in advance
The text was updated successfully, but these errors were encountered: