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

<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