Android二维码生成与扫码
程序员文章站
2022-06-24 19:32:42
一、生成二维码注意:hint不要使用模板,若填写的value为String可能会抛异常。在gradle中加入依赖: compile 'com.journeyapps:zxing-android-embedded:3.2.0@aar'//Add dependency compile 'com.google.zxing:core:3.3.0'/** * 生成简单二维码 * * @param content 字符串内容...
一、生成二维码
注意:hint不要使用模板,若填写的value为String可能会抛异常。
在gradle中加入依赖:
compile 'com.journeyapps:zxing-android-embedded:3.2.0@aar'//Add dependency
compile 'com.google.zxing:core:3.3.0'
/**
* 生成简单二维码
*
* @param content 字符串内容
* @param width 二维码宽度
* @param height 二维码高度
* @param character_set 编码方式(一般使用UTF-8)
* @param error_correction_level 容错率 L:7% M:15% Q:25% H:35%
* @param margin 空白边距(二维码与边框的空白区域)
* @param color_black 黑色色块
* @param color_white 白色色块
* @return BitMap
*/
public static Bitmap createQRCodeBitmap(String content, int width, int height,
String character_set, String error_correction_level,
String margin, int color_black, int color_white) {
// 字符串内容判空
if (TextUtils.isEmpty(content)) {
return null;
}
// 宽和高>=0
if (width < 0 || height < 0) {
return null;
}
try {
/** 1.设置二维码相关配置 */
Hashtable hints = new Hashtable<>();
// 字符转码格式设置
if (!TextUtils.isEmpty(character_set)) {
hints.put(EncodeHintType.CHARACTER_SET, character_set);
}
// 容错率设置
// if (!TextUtils.isEmpty(error_correction_level)) {
// hints.put(EncodeHintType.ERROR_CORRECTION, error_correction_level);
// }
// 空白边距设置
if (!TextUtils.isEmpty(margin)) {
hints.put(EncodeHintType.MARGIN, 0);
}
/** 2.将配置参数传入到QRCodeWriter的encode方法生成BitMatrix(位矩阵)对象 */
BitMatrix bitMatrix = new QRCodeWriter().encode(content, BarcodeFormat.QR_CODE, width, height, hints);
/** 3.创建像素数组,并根据BitMatrix(位矩阵)对象为数组元素赋颜色值 */
int[] pixels = new int[width * height];
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
//bitMatrix.get(x,y)方法返回true是黑色色块,false是白色色块
if (bitMatrix.get(x, y)) {
pixels[y * width + x] = color_black;//黑色色块像素设置
} else {
pixels[y * width + x] = color_white;// 白色色块像素设置
}
}
}
/** 4.创建Bitmap对象,根据像素数组设置Bitmap每个像素点的颜色值,并返回Bitmap对象 */
Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
bitmap.setPixels(pixels, 0, width, 0, 0, width, height);
return bitmap;
} catch (WriterException e) {
e.printStackTrace();
return null;
}
}
二、扫码
参考博客https://www.cnblogs.com/zoro-zero/p/12068613.html
1.将工程clone下来
git clone github.com/hongchuanfeng/QRCodeDemo.git
2.引入工程
将项目中的com.google和com.dommy引入项目
拷贝本项目demo中的布局activity_scanner.xml和toolbar_scanner.xml
拷贝资源目录raw至本项目中,beep.ogg是扫描成功时的提示音。
拷贝或合并文件内容attrs.xml/colors.xml/ids.xml三个文件。
build.gradle文件中添加引用:
compile 'com.google.zxing:core:3.3.0'
修改R文件引用路径
修改以下4个文件中的R文件引用地址,引用本项目的R。
com.google.zxing.activity.CaptureActivity com.google.zxing.decoding.CaptureActivityHandler com.google.zxing.decoding.DecodeHandler com.google.zxing.view.ViewfinderView
权限配置
AndroidManifest.xml中添加权限申请代码:
<uses-permission android:name="android.permission.INTERNET" /> <!-- 网络权限 -->
<uses-permission android:name="android.permission.VIBRATE" /> <!-- 震动权限 -->
<uses-permission android:name="android.permission.CAMERA" /> <!-- 摄像头权限 -->
<uses-feature android:name="android.hardware.camera.autofocus" /> <!-- 自动聚焦权限 -->
注册CaptureActivity:
<application...
<activity android:name="com.google.zxing.activity.CaptureActivity"/>
</application>
注意:若抛异常:java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
则将CaptureActivity改为继承Activity,且要在activity_scanner里加上
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
本文地址:https://blog.csdn.net/GreyBtfly/article/details/108738700
上一篇: 鱼片煮几分钟最嫩