如何在android中同时发送电子邮件和短信?

时间:2014-03-25 04:50:49

标签: android email android-intent sms

我为我的应用程序创建了Intent选择器。我想通过这个发送电子邮件和短信。我的代码在这里http://pastie.org/8966227。但我可以正确地得到结果。控件始终只进入第二个循环。任何人都可以帮助我?提前谢谢。

1 个答案:

答案 0 :(得分:1)

您无法检查用户选择了哪个意图。

除非您为活动选择创建自己的对话框实现。

要创建此类对话框,您需要使用PackageManager及其queryIntentActivities()函数。该函数返回List。

有更多信息herehere