I need to create QR code from contact info which is in MeCard format. I need to encode the following field:

  • Name (N:)
  • Url (URL:)
  • Note (NOTE:)

I can correctly create all 3 fields using ZXing QR Code Generator (here is the generated QR code from the example below). However it doesn't work with ZXing app on Android Emulator. I'm using this snippet:

Intent i = new Intent("com.google.zxing.client.android.ENCODE");
Bundle data = new Bundle();
data.putString(Contacts.Intents.Insert.NAME, "name1");
data.putString("url", "http://www");
//data.putString(Contacts.Intents.Insert.POSTAL, "http://www");
data.putString(Contacts.Intents.Insert.NOTES, "xyz");
i.putExtra("ENCODE_TYPE", "CONTACT_TYPE");
i.putExtra("ENCODE_DATA", data);
startActivity(i);

The result: ZXing app only encode the name field.

enter image description here

1.) How can I solve this issue? Hopefully without dumping everything in name field.

2.) Are there any alternative library support encoding? ZXing seem to be the most popular.

link|improve this question

Note: you can now encode the URL and NOTE field using URL_KEY and NOTE_KEY respectively as a key for the extra in the intent. – user802421 Jan 20 at 20:28
feedback

2 Answers

up vote 1 down vote accepted

You're not doing anything wrong, it's that the Intent does not support a note or URL.

link|improve this answer
Would they support it in the future? – user802421 Aug 11 '11 at 15:46
You are welcome to supply a patch! It's open source. code.google.com/p/zxing – Sean Owen Aug 11 '11 at 17:02
feedback

it's possible to encode url. just use: data.putString("email","http://www.xyz.com");

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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