我正在尝试通过 Intents 选择应用程序(例如 Whatsapp)从字符串或文件发送 VCard。你有什么想法?
谢谢
编辑:
我试过这段代码。还有设置类型文本/纯文本。vcard 变量是一个带有 VCard 的字符串。
Intent intent = new Intent(android.content.Intent.ACTION_SEND);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setType("text/x-vcard");
intent.putExtra(android.content.Intent.EXTRA_STREAM, vcard);
intent.setPackage(packageName);
如果我将此发送到 Whatsapp,我必须像字符串一样发送电子名片,但不能像卡片一样识别