我正在使用 JQM 开发移动网站,但在为 Android 4 及更高版本设置正文时遇到问题。地址和主题工作。
这是代码。
var shareEmail = "mailto:"+thisAddress+"?&subject=" + encodeURIComponent(+thisSubject) + "&body=" + encodeURIComponent(thisBody);
它在早期版本中运行良好。
有什么建议么。
我正在使用 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();
}
干杯,菲利克斯