gpt4 book ai didi

javascript - mailto 不适用于 Android jellybean

转载 作者:行者123 更新时间:2023-11-28 09:03:53 25 4
gpt4 key购买 nike

我正在使用 JQM 开发一个移动网站,但在为 Android 版本 4 及更高版本设置正文时遇到问题。地址和主题工作。

这是代码。

var shareEmail = "mailto:"+thisAddress+"?&subject=" + encodeURIComponent(+thisSubject) + "&body=" + encodeURIComponent(thisBody);

它在早期版本中运行良好。

任何建议。

最佳答案

尝试这样做,对我来说效果很好:)

Intent i = new Intent(Intent.ACTION_SEND);
i.setType("message/rfc822");
i.putExtra(Intent.EXTRA_EMAIL , new String[]{"EMAIL ADRESS"});
i.putExtra(Intent.EXTRA_SUBJECT, "SUBJECT");
i.putExtra(Intent.EXTRA_TEXT , "BODY");
try {
startActivity(Intent.createChooser(i, "Send email..."));
} catch (android.content.ActivityNotFoundException ex) {
Toast.makeText(Start.this, "Sorry, there is no email client installed", Toast.LENGTH_SHORT).show();
}

干杯,菲利克斯

关于javascript - mailto 不适用于 Android jellybean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17359740/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com