The android tutorial adds its own application to system sharing

  • 2020-05-27 07:09:38
  • OfStack

Configure a different type of intent-filter in your own AndroidManifest.xml for an activity. Here you are adding pictures, and you can also add other types


<intent-filter>
   <action android:name="android.intent.action.SEND" />
   <data android:mimeType="image/*"/>
   <category android:name="android.intent.category.DEFAULT" />
</intent-filter>


Related articles: