如何通过Glass发送电子邮件

时间:2014-04-29 07:45:18

标签: google-glass google-gdk

我正在尝试使用以下代码发送从Glass获取的图像...

Intent emailIntent = new Intent( android.content.Intent.ACTION_SEND);
emailIntent.setType("plain/text");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] {     
    "xyz@gmail.com" });
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "My Subject");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "My image attached");
emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(imageLocation));
startActivity(Intent.createChooser(emailIntent, "Send mail..."));

但我得到“没有应用可以执行此操作”。我相信Glass没有这样的意图。任何人都可以提供替代解决方案,以便我可以通过Glass发送电子邮件。

1 个答案:

答案 0 :(得分:0)

如果没有关于Glass的电子邮件意图,您将不得不以更原始的方式执行此操作,此答案中有相关说明,包括带有附加图像的电子邮件,请注意有关Internet权限的部分:

Sending Email in Android using JavaMail API without using the default/built-in app