自动将 vcard 3.0 导入 Android 联系人 (Android 2.1)
我正在尝试将 vcard(3.0 版)自动导入到 android 联系人中。 在联系人管理器中,有一个选项可以将存储在 sd 卡上的 vcf 文件导入到联系人中。如何通过移交文件来触发此功能?
I'm trying to import a vcard (vers. 3.0) automatically into the android contacts.
Within the contact manager there is an option to import a vcf file stored on the sd-card into the contacts. How can I trigger this function with handing over a file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在我的一个项目中使用了以下解决方案。效果非常好。作为 vCard 库,我使用了 cardme v.0.26,它也支持 vcard 3.0 版本。
注意:文件名存储在 res/values/strings.xml...
// 该变量包含您的 vCard 作为字符串
字符串 vcardString;
I used for one of my projects the following solution. It worked perfectly. As the vCard lib I used cardme v.0.26, which supports vcard version 3.0 as well.
note: file name is stored in res/values/strings.xml...
// this var contains your vCard as a string
String vcardString;