Hi,

I'd like to set specific extras (different text, image/no image...) to
an ACTION_SEND intent according to the app selected in the chooser.
Basically I'd like to have a long text and an image for an email, just
the long text for Facebook, and a short text for Twitter... To do so I
need to intercept the app chosen in the chooser. How can I do that?

Thanks

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "My text");
startActivity(Intent.createChooser(intent, "Share with"));

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to