Whatsapp的Intent-Filter - >分享图像

时间:2012-04-24 15:47:40

标签: android android-intent intentfilter whatsapp

如果您尝试与Whatsapp共享图像,它会为您提供一个列表供您选择: 像Camera,Gallery等现在我想把我的应用程序放在这个列表中。我看到了一些应用程序,如“paint for whatsapp”,这是可能的。我试过“android.media.action.IMAGE_CAPTURE” 但这只取代了System-Camera。我想在列表中有一个新的观点。 提前致谢 纳斯

2 个答案:

答案 0 :(得分:2)

这对我有用:

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

答案 1 :(得分:1)

使用不同的itentfilter配置时,您可以创建自己的Intent-Action或显示在其他列表中,有关详细信息,请参阅http://developer.android.com/guide/topics/intents/intents-filters.html