使用 ZXing 对 Android 上的联系信息 (MeCard) 进行编码
我需要从 MeCard 格式。我需要对以下字段进行编码:
- Name (N:)
- Url (URL:)
- Note (NOTE:)
我可以使用 ZXing二维码生成器(这里是从下面的示例生成 QR 代码)。但是,它不适用于 Android 模拟器上的 ZXing 应用程序。我正在使用以下代码片段:
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);
结果:ZXing 应用程序仅对 name
字段进行编码。
1.) 我怎样才能解决这个问题? 希望不要将所有内容都转储到名称字段。
2.) 是否有其他库支持编码? ZXing 似乎是最受欢迎的。
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.
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你没有做错什么,只是 Intent 不支持注释或 URL。
You're not doing anything wrong, it's that the Intent does not support a note or URL.
可以对 url 进行编码。
只需使用:
data.putString("电子邮件","http://www.xyz.com");
it's possible to encode url.
just use:
data.putString("email","http://www.xyz.com");