Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QR code generator in android [closed]

I am planning to develop a QR code generator application for Android devices.

Can somebody please provide me some references to guide me on this?

like image 769
brig Avatar asked Jul 05 '26 00:07

brig


2 Answers

You can visit ZXING ("Zebra Crossing") and you can also find a working example here.

This is an example of 150x150 qr code of ZXING,

Bitmap bm = encodeAsBitmap(barcode_content, BarcodeFormat.QR_CODE, 150, 150);

if(bm != null) {
    image_view.setImageBitmap(bm);
}
like image 69
Talha Avatar answered Jul 07 '26 14:07

Talha


The zxing library is a good start.

There's also a Google Charts API for generating QRCodes

like image 30
st0le Avatar answered Jul 07 '26 13:07

st0le



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!