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 text on facebook, twitter, google+ and also by e-mail in my android app. I have searched and found the following code:

           Intent sharingIntent = new Intent(Intent.ACTION_SEND);
           sharingIntent.setType("plain/text");
           sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, "My text");
           startActivity(Intent.createChooser(sharingIntent,"Share using"));

I m using google emulator API8 platform 2.2. I have facebook and g+ installed on my emulator and I have also configured my gmail account. When I click on share button on which the above code is written I don't get a menu to choose like share using: facebook, g+, gmail.. on the contrary it directly uses my gmail account to share.. is there any problem with the emulator?? What am I doing wrong?? Please help me...

share|improve this question

1 Answer

up vote 1 down vote accepted

Try following this tutorial over here : http://mobile.tutsplus.com/tutorials/android/android-sdk-implement-a-share-intent/

Maybe you missed some step.

share|improve this answer
i have seen the tutorial and i dont think i missed something.. is there any issue with emulator?? i read somewhere that emulator doesn't display chooser while on the device it would work.. is that so? – user1566160 Jul 31 '12 at 15:36
Yeah you should definetely try it debugging it on a device then a emulator..This discussion here is discussing the same issue :code.google.com/p/android/issues/detail?id=25467 – Android2390 Jul 31 '12 at 15:41
hey thanks...i dont know how to test on device i am very new to android... can u help me somehow? – user1566160 Jul 31 '12 at 16:07
Just attach your android phone through usb and then go to this link :developer.android.com/tools/device.html and follow the steps and then debug the application on your phone :) – Android2390 Jul 31 '12 at 16:17
Hey thanku very much i will certainly try this tomorrow.. after arranging an android device... i m really greatful to you.. – user1566160 Jul 31 '12 at 16:27
show 9 more comments

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.