Intent Filters - Android Developers
Information:
Note: In order to receive implicit intents, you must include the
CATEGORY_DEFAULT category in the intent filter. The methods
startActivity() and startActivityForResult() treat all intents as if
they declared the CATEGORY_DEFAULT category. If you do not declare
this category in your intent filter, no implicit intents will resolve
to your activity.
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
<data android:mimeType="image/*" />
</intent-filter>