我一直试图使用"传递一些文字。 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未填充。请帮忙!!