On Sun, Aug 22, 2010 at 8:57 AM, Moto <[email protected]> wrote:

> I use the share options available by Android devices.  Most apps such
> as facebook or other twitter apps support the share intent.  You can
> actually see the intent call on the logcat if you do a share on a
> picture....
>
>                Intent shareIntent = new
> Intent(android.content.Intent.ACTION_SEND);
>                shareIntent.setType("text/plain");
>

You should wrap this in an intent chooser with Intent.createChooser().  That
will get rid of the "make this the default" checkbox etc.

-- 
Dianne Hackborn
Android framework engineer
[email protected]

Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see and
answer them.

-- 
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