我正在開發一個Android應用程序,並希望通過打開設備中可用的所有
共享選項來共享一些文本。但目前該列表正在顯示電子郵件,藍牙,Gmail和消息。如何顯示android中的所有共享選項?
像BBC新聞這樣的其他應用在Bump,Picasa和其他應用中顯示更多選項。如何顯示所有可用的選項並處理它們?
我使用這個:
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"));
和清單
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain"/>
</intent-filter>
如果沒有得到解決,那麼使用''而不是''這會顯示所有選項,包括Bump,Picasa –