对于WhatsApp的意向过滤器 - >共享图像(Intent-Filter for What

2019-07-29 03:42发布

如果您尝试分享WhatsApp的图像时,它会给你一个列表,你可以选择:像相机,图库等。现在我想向我的应用程序在此列表中。 我看到一些应用程序,如“涂料的WhatsApp”里,这是可能的。 我想“android.media.action.IMAGE_CAPTURE”,但是这只是取代了系统的摄像头。 我想在列表中的新点。 在此先感谢乔纳斯

Answer 1:

这对我的作品:

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


Answer 2:

你可以创建自己的意向行动或使用不同itentfilter配置时出现在其他列表,请参阅http://developer.android.com/guide/topics/intents/intents-filters.html了解更多详情。



文章来源: Intent-Filter for Whatsapp -> share image