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...