无法在android中使用intent传递接收者邮件ID

时间:2015-11-01 11:32:30

标签: android email android-intent

我一直试图使用"传递一些文字。 Intent.ACTION_SEND"但我希望使用Whatsapp,Gmail等发送相同的文本。我尝试使用以下代码。

     String shareBody = "Here is the share content body";
     Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
     sharingIntent.setType("text/plain");
     sharingIntent.putExtra(Intent.EXTRA_EMAIL, new String[]{"hei@gmail.com"});
     sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
     startActivity(Intent.createChooser(sharingIntent, "subject"));

它工作正常我可以使用Whatsapp和Gmail传递相同的字符串,但我需要传递接收者邮件ID以传递它..我尝试传递如上,但没有任何反应。邮件ID未填充。请帮忙!!

0 个答案:

没有答案