• Android 二维码扫描/生成


    先看看实现效果

    1.在module的build.gradle中执行compile操作

    compile 'cn.yipianfengye.android:zxing-library:2.2'
    

    2.在Application中执行初始化操作

    ZXingLibrary.initDisplayOpinion(this);
    

    3. 在代码中执行打开扫描二维码界面

    /**
      * 打开默认二维码扫描界面
    */ 
    button1.setOnClickListener(new View.OnClickListener() { 
      @Override
        public void onClick(View v) { 
          Intent intent = new Intent(MainActivity.this, CaptureActivity.class);      
           startActivityForResult(intent, REQUEST_CODE);
           // REQUEST_CODE是我们定义的int型常量。
      }
    });

     4.在Activity的onActivityResult方法中接收扫描结果

    /**
             * 处理二维码扫描结果
    */
    if (requestCode == REQUEST_CODE) { //处理扫描结果(在界面上显示)
      if (null != data) {
        Bundle bundle = data.getExtras();
        if (bundle == null) {
          return;
       } if (bundle.getInt(CodeUtils.RESULT_TYPE) == CodeUtils.RESULT_SUCCESS) {
         String result = bundle.getString(CodeUtils.RESULT_STRING);
         Toast.makeText(this, "解析结果:" + result, Toast.LENGTH_LONG).show();
       } else if (bundle.getInt(CodeUtils.RESULT_TYPE) == CodeUtils.RESULT_FAILED) {
        Toast.makeText(MainActivity.this, "解析二维码失败", Toast.LENGTH_LONG).show();
        }
      }
    }

     5.生成带Logo的二维码图片

     mBitmap = CodeUtils.createImage(textContent, 400, 400,BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher));
    imageView.setImageBitmap(mBitmap);

     6.生成不带logo的二维码图片

     mBitmap = CodeUtils.createImage(textContent, 400, 400, null);
     imageView.setImageBitmap(mBitmap);
    
  • 相关阅读:
    kubernetes dashboard 二次开发
    grafana二次开发
    Harbor 定制页面 和 二次开发指南
    spring boot 知识点1
    spring boot2.1读取 apollo 配置中心3
    apollo 部门管理
    spring boot2.1读取 apollo 配置中心2
    a 产生一个int数组,长度为100,并向其中随机插入1-100,并且不能重复。
    Net上机考试
    Net(ASP.NET)程序设计
  • 原文地址:https://www.cnblogs.com/monkey0928/p/9864131.html
Copyright © 2020-2023  润新知