当前位置:   article > 正文

Android实现生成二维码以及扫描二维码的功能(超级简单!)_android 生成二维码

android 生成二维码


前言

提示:这里可以添加本文要记录的大概内容:

我是通过一个第三方库来实现二维码的生成,以及扫描二维码的功能,开源库如下:

implementation 'com.journeyapps:zxing-android-embedded:3.4.0'

一、布局文件如下

布局比较简单,就只有简单的一些按钮,输入框,图片。

效果如下:

 activity_main.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. android:layout_margin="20dp"
  9. tools:context=".MainActivity">
  10. <EditText
  11. android:id="@+id/et_text"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:hint="输入文字"
  15. android:layout_margin="12dp"/>
  16. <Button
  17. android:id="@+id/btn"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:gravity="center"
  21. android:layout_gravity="center"
  22. android:text="点击生成"/>
  23. <Button
  24. android:id="@+id/button1"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:gravity="center"
  28. android:layout_gravity="center"
  29. android:text="扫码"/>
  30. <ImageView
  31. android:layout_marginTop="30dp"
  32. android:id="@+id/image"
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content"
  35. android:scaleType="fitCenter"
  36. android:adjustViewBounds="true"/>
  37. </LinearLayout>

二、实现生成二维码的功能

  1. btn.setOnClickListener(new View.OnClickListener() {
  2. @Override
  3. public void onClick(View v) {
  4. String s = editText.getText().toString().trim();
  5. MultiFormatWriter writer = new MultiFormatWriter();
  6. try {
  7. BitMatrix matrix = writer.encode(s, BarcodeFormat.QR_CODE,350,350);
  8. BarcodeEncoder encoder = new BarcodeEncoder();
  9. Bitmap bitmap = encoder.createBitmap(matrix);
  10. imageView.setImageBitmap(bitmap);
  11. InputMethodManager manager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
  12. // manager.hideSoftInputFromWindow(editText.getApplicationWindowToken(),0);
  13. } catch (WriterException e) {
  14. e.printStackTrace();
  15. }
  16. }
  17. });

三、实现扫面二维码的功能

  1. button1.setOnClickListener(new View.OnClickListener() {
  2. @Override
  3. public void onClick(View v) {
  4. new IntentIntegrator(MainActivity.this)
  5. .setDesiredBarcodeFormats(IntentIntegrator.QR_CODE_TYPES)// 扫码的类型,可选:一维码,二维码,一/二维码
  6. .setPrompt("请对准二维码")// 设置提示语
  7. .setCameraId(0)// 选择摄像头,可使用前置或者后置
  8. .setBeepEnabled(true)// 是否开启声音,扫完码之后会"哔"的一声
  9. .setBarcodeImageEnabled(true)// 扫完码之后生成二维码的图片
  10. .initiateScan();// 初始化扫码
  11. }
  12. });
  13. //返回的结果
  14. @Override
  15. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  16. IntentResult result = IntentIntegrator.parseActivityResult(requestCode, resultCode, data);
  17. if(result != null) {
  18. if(result.getContents() == null) {
  19. Toast.makeText(this, "Cancelled", Toast.LENGTH_LONG).show();
  20. } else {
  21. Toast.makeText(this, "Scanned: " + result.getContents(), Toast.LENGTH_LONG).show();
  22. }
  23. } else {
  24. super.onActivityResult(requestCode, resultCode, data);
  25. }
  26. }

生成二维码的效果显示:

二维码的效果显示:

 

总结

本次实现创建二维码和扫描二维码的功能比较简单,使用的是第三方库的依赖。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/949592
推荐阅读
相关标签
  

闽ICP备14008679号