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.

I want to share my android application link on simple button click to facebook as well as twitter. basically I want to share some custom text and my application link of market.

So what i have to do to achieve this?

Any suggestion will be appreciated.

share|improve this question
who gave -1...any thing wrong i have told buddy? – Rushabh Patel Sep 9 '12 at 18:14
1  
That you will never know. And as to why, it is possibly because you are asking a question already asked and answered several times on SO. And plus you have not shown any effort to do it yourself other than having typed a few lines asking for a ready-made solution. Show what you have tried and ask specific questions if you are stuck. – IceMAN Sep 9 '12 at 18:19
@TwistedUmbrella: I would love to have done just that. And I was about to when before I could copy the link back, you had already posted the same one. Made my post moot. Plus, the OP has to show some effort on his part too. That's my opinion. You might have a different one. – IceMAN Sep 9 '12 at 18:28
@Sid : yes i understand you and also i have used Facebook sdk and made actually but just to share only a single link, i want to ask that is there any other way to do so. that is only my requirement. So i put this question to find other option also. – Rushabh Patel Sep 10 '12 at 5:38

1 Answer

String message = "Text I wan't to share."
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_TEXT, message);

startActivity(Intent.createChooser(share, "Title of the dialog the system will open"));

As documented in the answer found at Android - Share on Facebook, Twitter, Mail, ecc

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.