我想从我的应用程序发送一封电子邮件。所以我使用了以下代码。
String uriText = "abcd@gmail.com" + "?subject=" + URLEncoder.encode("Subject") + "&body=" + URLEncoder.encode("some text here");
Uri uri = Uri.parse(uriText);
Intent sendIntent = new Intent(Intent.ACTION_SENDTO);
sendIntent.setData(uri);
startActivity(Intent.createChooser(sendIntent, "Send Email"));
我已经配置了我的 Gmail 和电子邮件应用程序。我在我的 Nexus S (JellyBean) 和 HTC T-Mobile G2 (GingerBread) 上进行了测试。它们都显示“没有应用程序可以执行此操作。”。
有谁知道这里有什么问题?