On Sun, Aug 22, 2010 at 5:10 AM, samspade79 <[email protected]> wrote: > Does anyone know of a library that will give me the "share" > functionality for pictures? Ie, how in many apps now you are given the > option of sharing a page or image with facebook, twitter, email, sms, > etc.
I am not quite certain what you mean by your question. If you are looking to determine what services allow you to "share", construct an ACTION_SEND Intent that describes what you want to share and use PackageManager and queryIntentActivities() to find out details of who all supports that action. If you are looking to determine what applications *request* ACTION_SEND Intents, I don't think there's a way to do that sort of reverse lookup. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 3.1 Available! -- 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

