30

我正在尝试使用以下代码邮寄数据:

email = (Button) findViewById(R.id.enail);
    email.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {

            Intent emailIntent = new Intent(
                    android.content.Intent.ACTION_SEND);
            emailIntent.setAction(Intent.ACTION_SEND);
            emailIntent.setType("message/rfc822");
            emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,
                    new String[] { "" });
            emailIntent.putExtra(android.content.Intent.EXTRA_CC, "");
            emailIntent.putExtra(android.content.Intent.EXTRA_BCC, "");
            emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
                    "Playlist Details");
            emailIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(Detail));
            emailIntent.setType("text/html");
            startActivity(emailIntent);

        }
    });

但它会引发以下错误:

07-17 12:31:33.438: E/AndroidRuntime(498): FATAL EXCEPTION: main
07-17 12:31:33.438: E/AndroidRuntime(498): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.SEND (has extras) }
07-17 12:31:33.438: E/AndroidRuntime(498):  at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1408)
07-17 12:31:33.438: E/AndroidRuntime(498):  at android.app.Instrumentation.execStartActivity(Instrumentation.java:1378)
07-17 12:31:33.438: E/AndroidRuntime(498):  at android.app.Activity.startActivityForResult(Activity.java:2817)
07-17 12:31:33.438: E/AndroidRuntime(498):  at android.app.Activity.startActivity(Activity.java:2923)
07-17 12:31:33.438: E/AndroidRuntime(498):  at com.playlist.ViewPlayList$3.onClick(ViewPlayList.java:93)
07-17 12:31:33.438: E/AndroidRuntime(498):  at android.view.View.performClick(View.java:2408)
07-17 12:31:33.438: E/AndroidRuntime(498):  at android.view.View$PerformClick.run(View.java:8816)
07-17 12:31:33.438: E/AndroidRuntime(498):  at android.os.Handler.handleCallback(Handler.java:587)
07-17 12:31:33.438: E/AndroidRuntime(498):  at android.os.Handler.dispatchMessage(Handler.java:92)
07-17 12:31:33.438: E/AndroidRuntime(498):  at android.os.Looper.loop(Looper.java:123)
07-17 12:31:33.438: E/AndroidRuntime(498):  at android.app.ActivityThread.main(ActivityThread.java:4627)
07-17 12:31:33.438: E/AndroidRuntime(498):  at java.lang.reflect.Method.invokeNative(Native Method)
07-17 12:31:33.438: E/AndroidRuntime(498):  at java.lang.reflect.Method.invoke(Method.java:521)
07-17 12:31:33.438: E/AndroidRuntime(498):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
07-17 12:31:33.438: E/AndroidRuntime(498):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
07-17 12:31:33.438: E/AndroidRuntime(498):  at dalvik.system.NativeStart.main(Native Method)

请帮我。

4

6 回答 6

61

调用StartActivity方法如下:

    Intent emailIntent = new Intent(
                        android.content.Intent.ACTION_SEND);
                emailIntent.setAction(Intent.ACTION_SEND);
                emailIntent.setType("message/rfc822");
                emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,
                        new String[] { "" });
                emailIntent.putExtra(android.content.Intent.EXTRA_CC, "");
                emailIntent.putExtra(android.content.Intent.EXTRA_BCC, "");
                emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
                        "Playlist Details");
                emailIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(Detail));
                emailIntent.setType("text/html");

// FOLLOWING STATEMENT CHECKS WHETHER THERE IS ANY APP THAT CAN HANDLE OUR EMAIL INTENT 
startActivity(Intent.createChooser(emailIntent,
                        "Send Email Using: "));

如果系统没有找到任何 emil 应用程序,将显示一个不错的对话框:

在此处输入图像描述


我知道我正在回答一个老问题,但也许它可以帮助某人。

于 2013-07-03T08:18:22.093 回答
14

我在我的设备上对此进行了测试,代码运行良好。我也在模拟器上测试了这段代码,它崩溃了。问题是操作系统没有找到任何可以处理这个的活动ACTION_SEND。始终用 包围此类代码try/catch,因为您无法确定是否存在可以处理您的意图的此类活动。并尝试安装至少一个可以处理的应用程序ACTION_SEND,然后再试一次,看看它是否适合您。

于 2012-07-17T07:52:33.920 回答
7

尝试使用它来更好地练习向用户显示消息以设置邮件应用程序。

try{

// you email code here

} catch (ActivityNotFoundException e) {
// show message to user
}
于 2013-03-13T11:17:50.840 回答
4

是的,问题出在模拟器中,因为它没有在模拟器中配置任何电子邮件,如果有人发现此问题,请在您的模拟器中配置电子邮件,以执行此操作

从应用程序菜单中选择电子邮件并按照步骤操作。

于 2012-09-25T05:26:19.317 回答
4

发生此异常还有另一个微妙的原因。

我的应用程序在两种不同的条件下发送电子邮件。我设置 To: 字段的一个条件 - 它需要 Intent.ACTION_SENDTO

但是 Intent.ACTION_SENDTO 在未提供 To: 的其他情况下会导致所描述的异常。在那种情况下,需要 Intent.ACTION_SEND。

于 2017-02-06T00:40:00.340 回答
0

intent.resolveActivity(activity.getPackageManager())可以使用。该resolveActivity方法检查是否存在Activity要处理intent

从 Activity 调用的代码示例:

if (intent.resolveActivity(getPackageManager()) != null) {
    startActivity(intent);
} else {
    Toast.makeText(this, "No app to send email. Please install at least one", 
    Toast.LENGTH_SHORT).show();
}

并检查一下:https ://medium.com/better-programming/the-imperfect-android-send-email-action-59610dfd1c2d

于 2021-01-08T20:29:06.580 回答