Android利用zxing生成二维码的过程记录

 更新时间:2021年07月02日 11:34:28   作者:计蒙不吃鱼  
Android中二维码生成的最常用库就是zxing了,正好目前项目有了生成二维码的需求,所以下面这篇文章主要给大家介绍了关于Android利用zxing生成二维码的相关资料,需要的朋友可以参考下

二维码生成原理(即工作原理)

二维码官方叫版本Version。Version 1是21 x 21的矩阵,Version 2是 25 x 25的矩阵,Version 3是29的尺寸,每增加一个version,就会增加4的尺寸,公式是:(V-1)*4 + 21(V是版本号) 最高Version 40,(40-1)*4+21 = 177,所以最高是177 x 177 的正方形。

下面是一个二维码的样例:

效果图如下:

前提:

导入 zxing 的 jar 后开始操作,老规矩最后有源码,作者布局默认相对布局。

第一步:定义二维码的长宽高及图片控件

第二步:实例化 QRCodeWriter 后利用 for 循环将二维码画出来,然后用图片控件加载图片。

源码如下:

布局文件:**

  <Button
        android:id="@+id/mybutton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="0dp"
        android:text="点击显示二维码"
        android:textSize="20sp" />

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="192dp"
        android:src="@drawable/ic_launcher_background" />

    <EditText
        android:id="@+id/myeditText"
        android:layout_width="300dp"
        android:maxLines="1"
        android:layout_height="wrap_content"
        android:layout_below="@+id/mybutton"
        android:layout_centerHorizontal="true"
        android:ems="10"
        android:hint="请输入要加载成二维码的内容" />

java 文件:

public class MainActivity extends Activity implements View.OnClickListener {


    private int width = 300;
    private int height = 300;
    private ImageView imageView;
    private Bitmap bit;
    private Button mybutton;
    private EditText myeditText;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initView();

    }


    private void initView() {
        imageView = (ImageView) findViewById(R.id.imageView);
        mybutton = (Button) findViewById(R.id.mybutton);
        mybutton.setOnClickListener(this);
        myeditText = (EditText) findViewById(R.id.myeditText);
        myeditText.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.mybutton:
          String name=myeditText.getText().toString();
          if(name.equals("")){
              myeditText.setError("请输入内容");
          }else{
              zxing(name);
          }

                break;
        }
    }
    private void zxing(String name){
        QRCodeWriter qrCodeWriter = new QRCodeWriter();
        Map<EncodeHintType, String> hints = new HashMap<>();
        hints.put(EncodeHintType.CHARACTER_SET, "utf-8"); //记得要自定义长宽
        BitMatrix encode = null;
        try {
            encode = qrCodeWriter.encode(name, BarcodeFormat.QR_CODE, width, height, hints);
        } catch (WriterException e) {
            e.printStackTrace();
        }
        int[] colors = new int[width * height];
           //利用for循环将要表示的信息写出来
        for (int i = 0; i < width; i++) {
            for (int j = 0; j < height; j++) {
                if (encode.get(i, j)) {
                    colors[i * width + j] = Color.BLACK;
                } else {
                    colors[i * width + j] = Color.WHITE;
                }
            }
        }

        bit = Bitmap.createBitmap(colors, width, height, Bitmap.Config.RGB_565);
        imageView.setImageBitmap(bit);
    }

}


总结

到此这篇关于Android利用zxing生成二维码的文章就介绍到这了,更多相关Android zxing生成二维码内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • Android自定义View仿支付宝芝麻信用分仪表盘

    Android自定义View仿支付宝芝麻信用分仪表盘

    前几天支付宝刚刚升级到v9.9,看了一眼里面的芝麻信用分,仪表盘挺好看的,所以想着来写一个这个版本的仪表盘,不说完全一模一样,只是为了猜测支付宝在做这个的时候是如何设计的,在此记录一下,有需要的可以参考借鉴。
    2016-09-09
  • Android开发Jetpack组件Lifecycle原理篇

    Android开发Jetpack组件Lifecycle原理篇

    这一篇文章来介绍Android Jetpack架构组件的Lifecycle; Lifecycle用于帮助开发者管理Activity和Fragment 的生命周期, 由于Lifecycle是LiveData和ViewModel的基础;所以需要先学习它
    2022-08-08
  • Android接收和发送短信的实现代码

    Android接收和发送短信的实现代码

    这篇文章主要为大家详细介绍了Android接收和发送短信的实现代码,感兴趣的小伙伴们可以参考一下
    2016-08-08
  • Android控件ImageSwitcher实现左右图片切换功能

    Android控件ImageSwitcher实现左右图片切换功能

    这篇文章主要为大家详细介绍了Android控件ImageSwitcher实现左右图片切换功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-05-05
  • Android ellipsize的小问题介绍

    Android ellipsize的小问题介绍

    使用TextView的时候,需要长度过长自动显示省略号,android里有原生的支持,本文将针对此问题进行深入剖析,需要的朋友可以参考
    2012-11-11
  • 详解Android壁纸服务的启动过程

    详解Android壁纸服务的启动过程

    你有设置过手机的壁纸吗,你知道壁纸是什么样的程序它是怎么在后台运行的吗?这篇文章主要介绍了详解Android系统壁纸服务的启动过程
    2021-08-08
  • Android保持屏幕常亮

    Android保持屏幕常亮

    本篇文章主要介绍了Android保持屏幕常亮,PowerManager.WakeLock的使用。具有很好的参考价值。下面跟着小编一起来看下吧
    2017-04-04
  • Android 关闭多个Activity的实现方法

    Android 关闭多个Activity的实现方法

    这篇文章主要介绍了Android 关闭多个Activity的实现方法的相关资料,希望通过本文能帮助到大家,需要的朋友可以参考下
    2017-09-09
  • Android Studio配置反混淆的实现

    Android Studio配置反混淆的实现

    这篇文章主要介绍了Android Studio如何混淆的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-10-10
  • Android实现热门标签的流式布局

    Android实现热门标签的流式布局

    这篇文章主要介绍了Android实现热门标签的流式布局的详细方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2015-12-12

最新评论