意向滤波器WhatsApp的 - >分享图片滤波器、意向、图片、WhatsApp

2023-09-05 01:30:29 作者:宿命° Toxic #

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

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 like "paint for whatsapp" where this was possible. I tried "android.media.action.IMAGE_CAPTURE" but this only replaces the System-Camera. I want to have a new point in the List. Thanks in advance Jonas

推荐答案

这对我的作品:

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