diff --git a/app/src/main/java/io/legado/app/ui/qrcode/QrCodeFragment.kt b/app/src/main/java/io/legado/app/ui/qrcode/QrCodeFragment.kt index 4539d9fc4..ba5d4269d 100644 --- a/app/src/main/java/io/legado/app/ui/qrcode/QrCodeFragment.kt +++ b/app/src/main/java/io/legado/app/ui/qrcode/QrCodeFragment.kt @@ -13,14 +13,15 @@ class QrCodeFragment : CaptureFragment() { super.initCameraScan() //初始化解码配置 val decodeConfig = DecodeConfig() - decodeConfig.setHints(DecodeFormatManager.QR_CODE_HINTS) //如果只有识别二维码的需求,这样设置效率会更高,不设置默认为DecodeFormatManager.DEFAULT_HINTS - .setFullAreaScan(true) //设置是否全区域识别,默认false - .setAreaRectRatio(0.8f) //设置识别区域比例,默认0.8,设置的比例最终会在预览区域裁剪基于此比例的一个矩形进行扫码识别 - .setAreaRectVerticalOffset(0).areaRectHorizontalOffset = - 0 //设置识别区域水平方向偏移量,默认为0,为0表示居中,可以为负数 + //如果只有识别二维码的需求,这样设置效率会更高,不设置默认为DecodeFormatManager.DEFAULT_HINTS + decodeConfig.hints = DecodeFormatManager.QR_CODE_HINTS + //设置是否全区域识别,默认false + decodeConfig.isFullAreaScan = true + //设置识别区域比例,默认0.8,设置的比例最终会在预览区域裁剪基于此比例的一个矩形进行扫码识别 + decodeConfig.areaRectRatio = 0.8f //在启动预览之前,设置分析器,只识别二维码 - cameraScan.setAnalyzer(MultiFormatAnalyzer(decodeConfig)) //设置分析器,如果内置实现的一些分析器不满足您的需求,你也可以自定义去实现 + cameraScan.setAnalyzer(MultiFormatAnalyzer(decodeConfig)) } override fun onScanResultCallback(result: Result?): Boolean {