Android Zxing调整扫描区域 优化取图速度

本文介绍了如何根据屏幕大小调整Zxing扫描区域,以提高取图速度。通过修改`getFramingRect()`方法,确保扫描框适应不同屏幕尺寸,从而提供更好的用户体验。
摘要由CSDN通过智能技术生成

默认的大小是 以下这4个参数

// private static final int MIN_FRAME_WIDTH = 240;

// private static final int MIN_FRAME_HEIGHT = 240;

// private static final int MAX_FRAME_WIDTH = 480;

// private static final int MAX_FRAME_HEIGHT = 360;

根据屏幕大小调整      大家可以增大这些数值 : 最小的宽 高    ; 最大宽高

参数实际在 getFramingRect() 方法中起作用

以下是原本Demo中提供的

/**

  • Calculates the framing rect which the UI should draw to show the user where to place the

  • barcode. This target helps with alignment as well as forces the user to hold the device

  • far enough away to ensure the image will be in focus.

  • @return The rectangle to draw on screen in window coordinates.

*/

public Rect getFramingRect() {

Point screenResolution = configManager.getScreenResolution();

if (framingRect == null) {

if (camera == null)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值