I've seen the "share via" dialogs that are in apps like TFLN (texts from last night). Looks like this: share dialog

I am looking to share text. Can someone point me in the right direction? Is this done with intents?

link|improve this question

44% accept rate
feedback

2 Answers

up vote 52 down vote accepted

This is indeed done with Intents.

For sharing an image, like in the example picture, it would be something like this:

Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/jpeg");

share.putExtra(Intent.EXTRA_STREAM,
  Uri.parse("file:///sdcard/DCIM/Camera/myPic.jpg"));

startActivity(Intent.createChooser(share, "Share Image"));

For text you would use something like:

Intent share = new Intent(Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_TEXT, "I'm being sent!!");
startActivity(Intent.createChooser(share, "Share Text"));
link|improve this answer
2  
Is it possible to share image pointed by http url: share.putExtra(Intent.EXTRA_STREAM, Uri.parse("helios.gsfc.nasa.gov/image_mag_stamp.jpg";)); ? I can't get this working. – Searching... Jul 12 '11 at 11:18
The second one does not work with Messaging application. – Bao Le Jul 14 '11 at 7:01
@Second Does the text version display more options off the emulator? I tried what you suggested and it immediately proceeds to the built-in sms application. I'd rather see something more explicitly like the picture mentioned in the question. – thegrinner Jul 20 '11 at 18:35
guys can you give me a link for guidance.. I want to develop same app.. I have to upload photos on facebook through my app.. can any one help me. Thanks in advance – Tech.Rahul Apr 11 at 10:52
feedback

Yes. You need to provide an Activity with an intent filter that can handle objects of the MIME Type image/jpeg (say, if you wanted to support sharing JPEG images), and and action of presumably ACTION_SEND.

Many of the built-in Android apps are open-source, you can check the manifest file of the Messaging app to see what intent filters it is using.

link|improve this answer
Actually, I don't believe that all the built-in Android apps are open-source, just the operating system. – Waynn Lue Apr 4 at 8:06
2  
Definitely not the ones using Google services (Gmail, Maps, etc) - I was referring to the more basic ones, the one that come with the emulator. I'll rephrase. – EboMike Apr 4 at 16:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.