When I want to send some text with an email client on the device, is it possible to see what email client (e.g. Gmail or Yahoo mail) has been chosen before I set the email text in the intent?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Unfortunately, no. When you launch the chooser intent, it's up to the user to decide where to go/what to use. All data has to be set before launching the intent, and you have no control until the activity returns. In other words, you cannot affect the text of the message based on their choice in the dialog. |
|||
|
|
|
This can't be accomplished using the default intent chooser. However, you can query which activities can respond to your intent:
You could then proceed to display this in a list, observe which selection the user made and perform some selection-specific intent. |
|||
|
|