I need to create a qrcode in my android application, I need a library or source code that lets me create a Qr code for Android App. The library i need must:

  1. not leave a watermark (like onbarcode library)
  2. not use webservice api to create the qrcode(like google's library zxing)
  3. not need 3-rd party inslallers (like QR Droid)

    I already created such a code for Iphone(objective c) but i need a quick fix for android until i have time to make a qr generator of my own. It's my first android project sow any help will be appreciated,

link|improve this question

you could use zxing its open source – nandeesh Jan 10 at 9:26
zxing is not a web API, actually, see below – Sean Owen Jan 10 at 14:08
feedback

2 Answers

up vote 2 down vote accepted

Have you looked into ZXING? I've been using it successfully to create barcodes. You can see a full working example in the bitcoin application src

// this is a small sample use of the QRCodeEncoder class from zxing
try {
    // generate a 150x150 QR code
    Bitmap bm = encodeAsBitmap(barcode_content, BarcodeFormat.QR_CODE, 150, 150);

    if(bm != null) {
        image_view.setImageBitmap(bm);
    }
} catch (WriterException e) { //eek }
link|improve this answer
feedback

zxing does not (only) provide a web API; really, that is Google providing the API, from source code that was later open-sourced in the project.

As Rob says here you can use the Java source code for the QR code encoder to create a raw barcode and then render it as a Bitmap.

I can offer an easier way still. You can call Barcode Scanner by Intent to encode a barcode. You need just a few lines of code, and two classes from the project, under android-integration. The main one is IntentIntegrator. Just call shareText().

link|improve this answer
tanks this seems useful, only i'd hope to bypass any web API's, that might a bit unconfortable, in offline mode for my app, but this is very promising, i'll look into it – Radu Jan 10 at 16:15
Not sure I was clear but I am saying that the zxing options do not involve any web APIs – Sean Owen Jan 10 at 16:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.