[AppleScript] 纯文本查看 复制代码
/**
* 创建QR二维码图片
*/
// 参数顺序分别为:编码内容,编码类型,生成图片宽度,生成图片高度,设置参数
private Bitmap createQRCodeBitmap(......添加一些参数) {
// 用于设置QR二维码参数
Hashtable<EncodeHintType, Object> qrParam = new Hashtable<EncodeHintType, Object>();
// 设置QR二维码的纠错级别——这里选择最高H级别
qrParam.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
// 设置编码方式
qrParam.put(EncodeHintType.CHARACTER_SET, "UTF-8");
// 设定二维码里面的内容,一般是String
String cont = "www.baidu.com";
// 生成QR二维码数据——这里只是得到一个由true和false组成的数组
try {
BitMatrix bitMatrix = new MultiFormatWriter().encode(content,
BarcodeFormat.QR_CODE, 自己设定的图片大小:60, 自己设定的图片大小:60, qrParam);
// 开始利用二维码数据创建Bitmap图片,分别设为黑白两色
int w = bitMatrix.getWidth();
int h = bitMatrix.getHeight();
int[] data = new int[w * h];
for (int y = 0; y < h; y++) {
for (int x = 0; x < w; x++) {
if (bitMatrix.get(x, y))
data[y * w + x] = 0xff000000;// 黑色
else
data[y * w + x] = -1;// -1 相当于0xffffffff 白色
}
}
// 创建一张bitmap图片,采用最高的效果显示
Bitmap bitmap = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
// 将上面的二维码颜色数组传入,生成图片颜色
bitmap.setPixels(data, 0, w, 0, 0, w, h);
return bitmap;
} catch (WriterException e) {
e.printStackTrace();
}
return null;
}
生成的bitmap不能直接设置到background;
Bitmap bitmap = QRcode.createQRCodeBitmap(str);
//将图标的bitmap转化成BitmapDrawable
BitmapDrawable iconDrawable = new BitmapDrawable(bitmap);
iv.setBackground(iconDrawable);
扫描二维码:
布局文件中使用com.covics.zxingscanner.ScannerView组件;
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<com.covics.zxingscanner.ScannerView
android:id="@+id/scanner_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</FrameLayout>
JAVA代码:
cScannerView = (ScannerView) findViewById(R.id.scanner_view);
为组件设置监听:(让activity实现OnDecodeCompletionListener接口)
cScannerView.setOnDecodeListener(this);
实现方法:
/**
* 扫描结果处理
*
* @param barcodeFormat
* @param barcode
* @param bitmap
*/
@Override
public void onDecodeCompletion(String barcodeFormat, String barcode, Bitmap bitmap) {
if (barcode == null || "".equals(barcode)) {
barcode = "无法识别";
} else {
//按照一定的规则截取二维码字符串中的数据:
string = barcode.substring(barcode.indexOf("?") + 1, barcode.length());
}
}
重写aactivity中的其他方法:防止异常退出是摄像头还在工作状态
@Override
protected void onResume() {
super.onResume();
cScannerView.onResume();
}
@Override
protected void onPause() {
super.onPause();
cScannerView.onPause();
}