开发者

Getting the recepient count from email sent in Android

I'm launching the email program in Android from my app, using the following code...

Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("message/rfc822");
sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Test subject");
sendIntent.putExtra(Intent.EXTRA_TEXT, "Hello World!");
startAct开发者_开发技巧ivityForResult(Intent.createChooser(sendIntent, "Select email application."), INTENT_REQUEST_SEND_EMAIL);

In the called OnActivityResult(), is it possible to get the number of recepients the user has chosen to send the email to?

Thanks,

Rajath


That action does not support startActivityForResult(), sorry.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜