【发布时间】:2010-08-15 20:21:53
【问题描述】:
这甚至可以在不调用特定包的情况下实现吗?我发现了无数通过意图发送电子邮件的示例,但我找不到任何关于通过按下按钮在设备上简单地打开默认电子邮件客户端(如果用户有多个客户端,最好使用选择器对话框)。
【问题讨论】:
-
我很好奇你为什么要这样做。
-
客户希望他们的应用程序有一个“电子邮件”按钮,该按钮只是启动默认邮件客户端来检查公司邮件。
这甚至可以在不调用特定包的情况下实现吗?我发现了无数通过意图发送电子邮件的示例,但我找不到任何关于通过按下按钮在设备上简单地打开默认电子邮件客户端(如果用户有多个客户端,最好使用选择器对话框)。
【问题讨论】:
没有默认/简单的方法可以做到这一点。这段代码对我有用。它会打开一个选择器,其中包含所有注册到设备并直接发送到收件箱的电子邮件应用程序:
Intent emailIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("mailto:"));
PackageManager pm = getPackageManager();
List<ResolveInfo> resInfo = pm.queryIntentActivities(emailIntent, 0);
if (resInfo.size() > 0) {
ResolveInfo ri = resInfo.get(0);
// First create an intent with only the package name of the first registered email app
// and build a picked based on it
Intent intentChooser = pm.getLaunchIntentForPackage(ri.activityInfo.packageName);
Intent openInChooser =
Intent.createChooser(intentChooser,
getString(R.string.user_reg_email_client_chooser_title));
// Then create a list of LabeledIntent for the rest of the registered email apps
List<LabeledIntent> intentList = new ArrayList<LabeledIntent>();
for (int i = 1; i < resInfo.size(); i++) {
// Extract the label and repackage it in a LabeledIntent
ri = resInfo.get(i);
String packageName = ri.activityInfo.packageName;
Intent intent = pm.getLaunchIntentForPackage(packageName);
intentList.add(new LabeledIntent(intent, packageName, ri.loadLabel(pm), ri.icon));
}
LabeledIntent[] extraIntents = intentList.toArray(new LabeledIntent[intentList.size()]);
// Add the rest of the email apps to the picker selection
openInChooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, extraIntents);
startActivity(openInChooser);
}
【讨论】:
没有标准的Intent 操作来打开“设备上的默认电子邮件客户端”的“收件箱视图”。
【讨论】:
这个现在可以用了
Intent intent = new Intent("android.intent.action.MAIN");
intent.addCategory("android.intent.category.APP_EMAIL");
startActivity(Intent.createChooser(intent, ""));
【讨论】:
你可以从你的活动对象中试试这个:
它不一定会直接将您带到收件箱,但会打开电子邮件应用程序:
Intent intent = getPackageManager().getLaunchIntentForPackage("com.android.email");
startActivity(intent);
【讨论】: