Zxing简明教程

如何获取依赖?

Grandle依赖:

// https://mvnrepository.com/artifact/com.google.zxing/core
compile group: 'com.google.zxing', name: 'core', version: '3.4.0'

最新地址

如何使用?

  1. 新建一个Zxing的Config类
ZxingConfig config = new ZxingConfig();
  1. 配置参数
        config.setPlayBeep(true);//是否播放扫描声音 默认为true
        config.setShake(true);//是否震动  默认为true
        config.setDecodeBarCode(true);//是否扫描条形码 默认为true
        config.setReactColor(R.color.colorAccent);//设置扫描框四个角的颜色 默认为白色
        config.setFrameLineColor(R.color.colorAccent);//设置扫描框边框颜色 默认无色
        config.setScanLineColor(R.color.colorAccent);//设置扫描线的颜色 默认白色
        config.setFullScreenScan(true);//是否全屏扫描  默认为true  设为false则只会在扫描框中扫描
  1. 启动意图
        Intent intent = new Intent(MainActivity.this, CaptureActivity.class);
        intent.putExtra(Constant.INTENT_ZXING_CONFIG, config);
        startActivityForResult(intent, 1);
  1. 在onActicityResult( )方法中获取结果
String scanResult=data.getStringExtra(Constant.CODED_CONTENT);

源码学习

如果想深入的话,可以继续学习(挖坑…)

时序图

Zxing简明教程_第1张图片

类图

Zxing简明教程_第2张图片

你可能感兴趣的:(Android需求)