android - Whatsapp 的 Intent 过滤器 -> 共享图像

标签 android android-intent intentfilter whatsapp

如果您尝试通过 Whatsapp 共享图像,它会为您提供一个列表,您可以在其中选择: 像相机,画廊等现在我想把我的应用程序放在这个列表中。我看到一些应用程序,例如“为whatsapp绘制”,这是可能的。我尝试了“android.media.action.IMAGE_CAPTURE” 但这仅取代了系统相机。我想在列表中添加一个新点。 提前致谢 乔纳斯

最佳答案

这对我有用:

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

关于android - Whatsapp 的 Intent 过滤器 -> 共享图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10301413/

相关文章:

android - Android Studio 中编译 fileTree 和 Complile jar 有什么区别?

android - 相机打开时如何处理按下 "back"按钮

android - 仅在子 Activity 中使用 Monkey(android 调试)

android - Intent 过滤器在前台 Activity 中覆盖

android - 从 NFC 启动的 Activity/应用程序从未出现在最近的应用程序列表中

android - 使用显式 Intent 的 android 进程间通信的安全性

android - 主要 Activity 执行前 "initialization"

android - 如何使用相同的变量从 2 个不同的类接收额外的 Intent ?

android - 如何捕捉传入的短信

android - 再次选择日期时,如何在 EditText 中显示最后选择的日期?