code-scanner icon indicating copy to clipboard operation
code-scanner copied to clipboard

Code scanner library for Android, based on ZXing

Results 98 code-scanner issues
Sort by recently updated
recently updated
newest added

I am trying to play a sound effect while the scanner preview is active, but the sound effect is interrupted and cut off. Any way to disable audio from the...

The camera works perfectly and has shown the front facing camera, but is there any way to mirror the camera? @yuriy-budiyev

Hello.. I want to get QR Image or path after scanning using live camera..Is there any method exists or you will include in future update?

Again I hate to complain. And this is only a suggestion. The scanner supports already front and rear cameras. And one can select the camera to be used. It would...

Usually I am not complaining. The library is great. But I noticed that 1D barcode scanning only works if the device if the barcode is horizontal in the scan area....

Default zoom setting is already 0. But why it still zooming like 2x level. How do i completely disable zoom?

**Dependencies:** ``` dependencies { implementation 'com.budiyev.android:code-scanner:2.1.0' } implementation 'com.google.zxing:core:3.2.1' implementation 'com.journeyapps:zxing-android-embedded:3.2.0@aar' ``` **XML Code:** ``` ``` **Kotlin Code:** ``` private var mCodeScanner: CodeScanner? = null val scannerView: CodeScannerView = view.findViewById(R.id.scanner_view)...

I have set camera to Camera.BACK by default, but I would like to switch it later to front. I have added a button to help me switch by setting codeScanner.camera...

hi,how can i set round viewfinder and set margin to outer frame?

Im using this code on my example app on its oncreate mainactivity: ``` CodeScannerView scannerView = findViewById(R.id.scanner_view); mCodeScanner = new CodeScanner(this, scannerView); mCodeScanner.setDecodeCallback(new DecodeCallback() { @Override public void onDecoded(@NonNull final...