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.

How can implement an intent for sharing some text in a dialog like this ?

enter image description here

share|improve this question
Do you want to send those intents or receive them? – js- Mar 1 '12 at 14:04
6  
I copied the title of this question into a search engine. Now, guess what I found? -1 for no research effort. – user658042 Mar 1 '12 at 14:05
I want to send them – Alexander Fuchs Mar 1 '12 at 14:05
google is your friend androidforums.com/application-development/… – Brian Mar 1 '12 at 14:06

2 Answers

up vote 4 down vote accepted
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse(filePath));
try
{
    startActivity(Intent.createChooser(intent, "Sending File..."));
}
share|improve this answer

There u are:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, YOUR_TEXT_TO_SEND);
startActivity(Intent.createChooser(intent, "Share with"));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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