I'm using ActionBarSherlock in an app along with a ShareActionProvider. I'm using a share intent to share images in a manner very similar to the ActionBarSherlock example:
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
shareIntent.setType("image/*");
Everything is working properly, the only problem is that my app also accepts shared image content ("image/*"), so it shows up in the list of apps. Is there anyway around this?
EDIT:
Here are my intent filters:
<intent-filter>
<action android:name="android.intent.action.SEND"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="image/*"/>
</intent-filter>