Intent-Filter for Whatsapp -> share image

前端 未结 2 785
萌比男神i
萌比男神i 2021-02-06 18:28

If you try to share an Image with Whatsapp, it will give you a list where you can choose: like Camera,Gallery etc. now i would like to place my app in this list. I Saw some apps

相关标签:
2条回答
  • 2021-02-06 19:01

    This works for me:

            <intent-filter>
                <action android:name="android.intent.action.PICK" /> 
                <category android:name="android.intent.category.DEFAULT"  /> 
                <data android:mimeType="image/*" />
            </intent-filter>
    
    0 讨论(0)
  • 2021-02-06 19:20

    You can create your own Intent-Action or appear in other lists when using different itentfilter configurations, see http://developer.android.com/guide/topics/intents/intents-filters.html for more details.

    0 讨论(0)
提交回复
热议问题