malavika
malavika

Reputation: 1331

How to send email and sms by intent simultaneously in android?

I have created Intent chooser for my application. I want to send email and sms by this. My code is here http://pastie.org/8966227 . But I can get the result properly. The control always comes into second loop only. Any body can help me? thanks in advance.

Upvotes: 0

Views: 456

Answers (1)

Jitender Dev
Jitender Dev

Reputation: 6925

You can't check which intent has user selected.

Unless you create your own implementation of the dialog for the activity selection.

To create such dialog you need to use PackageManager and its queryIntentActivities() function. The function returns List.

More information is available here and here.

Upvotes: 1

Related Questions