我在应用程序中使用ActionBarSherlock以及 ShareActionProvider。我正在使用共享意图以与ActionBarSherlock 示例非常相似的方式共享图像:
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
shareIntent.setType("image/*");
一切正常,唯一的问题是我的应用程序还接受共享图像内容(“image/*”),因此它显示在应用程序列表中。有没有办法解决?
编辑:
这是我的意图过滤器:
<intent-filter>
<action android:name="android.intent.action.SEND"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="image/*"/>
</intent-filter>