使用 ZXing 对 Android 上的联系信息 (MeCard) 进行编码

发布于 2024-11-29 03:15:33 字数 1250 浏览 1 评论 0原文

我需要从 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.

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

书信已泛黄 2024-12-06 03:15:33

你没有做错什么,只是 Intent 不支持注释或 URL。

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

逆蝶 2024-12-06 03:15:33

可以对 url 进行编码。
只需使用:
data.putString("电子邮件","http://www.xyz.com");

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文