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 an developing a app. in android and want to share some text by opening all the
share options available in device but currently list is showing Email, blutooth, Gmail and messaging.
But other app like bbc news are showing more options in same device like Bump, Picasa, and others, how to show all available options and handle them.

enter code here

i am using this..

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

and in mainifest

 <intent-filter>
  <action android:name="android.intent.action.SEND" />
  <category android:name="android.intent.category.DEFAULT" />
  <data android:mimeType="text/plain"/>
  </intent-filter>

any solution will be appreciable.

Regards Developer

share|improve this question
if not get solved then use <data android:mimeType="image/*"> instead of <data android:mimeType="text/plain"/> this will show you all options including Bump, Picasa – ρяσѕρєя K Jul 4 '12 at 13:32

1 Answer

up vote 2 down vote accepted

It is because you're only showing intents registered to handle text/vcard Instead use

sharingIntent.setType("text/plain");
share|improve this answer
Thanks Buddy... cheers.... – AndDev21 Jul 4 '12 at 13:34
after sharing by bluttoth or by sms or anything it give me black screen how to overcome this so that it take me to my previous screen – AndDev21 Jul 5 '12 at 5:36

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.