feisher

Results 7 issues of feisher

val decodeConfig = DecodeConfig() decodeConfig.setHints(DecodeFormatManager.QR_CODE_HINTS) .setFullAreaScan(false) //设置是否全区域识别,默认false .setAreaRectRatio(0.8f) .setAreaRectVerticalOffset(0) .setAreaRectHorizontalOffset(0) cameraScan .setVibrate(true) .setNeedAutoZoom(true) .setAnalyzer(MultiFormatAnalyzer(decodeConfig)) 已经设置自动缩放,但没有效果

如题 : 1.3.6 版本只设置abiFilters "armeabi" 依然没有扫码结果返回

自3.2.0版本起setAlign使用BaseDialog.ALIGN.BOTTOM 出现CustomDialog横向不能铺满全屏, 使用3.1.9版本 .setAlign(CustomDialog.ALIGN.BOTTOM) 正常可用,能达到效果 3.2.0~3.2.4 使用BaseDialog.ALIGN.BOTTOM 不能达到效果,两边会有留白,很丑

建议修改吐司为静态吐司 在TastyToast类中修改 代码如下: static Toast toast = null; //Toast的对象! public static Toast makeText(Context context, String msg, int length, int type) { if (toast==null) { toast= new Toast(context); } 替换原此位置代码即可