mailto不使用android jellybean

时间:2013-06-28 07:45:39

标签: javascript android jquery-mobile mailto

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

这是代码。

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

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

任何建议。

1 个答案:

答案 0 :(得分:0)

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

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();
        }

干杯,菲利克斯