I am running an email program in Android from my application 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!"); startActivityForResult(Intent.createChooser(sendIntent, "Select email application."), INTENT_REQUEST_SEND_EMAIL);
In the called OnActivityResult (), is it possible to get the number of recipients selected by the user to send email?
Thanks,
Rajath
android email-integration
rajath
source share