- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想通过我在 Whatsapp 中的应用程序选择图片附件。
在 Whatsapp 从 Gallery 页面发送附件时,ShareIntentProvider 将提供原生 Gallery 应用程序和 Google 的照片来选择图像。我怎样才能使我的应用程序支持它?
我知道如何从我的应用程序分享图像到 Whatsapp,但我不知道如何让 Whatsapp 允许我的应用程序选择图像作为附件。
最佳答案
在您的 AndroidManifest.xml
中,为您要打开(来自 whatsapp)的 Activity
添加以下 Intent 过滤器:
<intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
<category android:name="android.intent.category.OPENABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
<data android:mimeType="video/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
<data android:mimeType="video/*" />
</intent-filter>
您的应用程序现在应该显示在 whatsapp 画廊列表中,
关于android - 如何让我的应用程序出现在 whatsapp 画廊中 ShareIntent Provider,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19828341/
所以我是 Android 编程新手,我正在尝试制作一个应用程序来获取输入数据并将它们保存到手机上,然后通过电子邮件将它们发送出去。我目前陷入困境。我的应用程序当前具有不保存的输入和一个共享按钮,该按钮
我想使用 Intent 共享图像,我使用了 answer of Dixit patel 中的代码. public class MainActivity extends Activity { @
我想通过我在 Whatsapp 中的应用程序选择图片附件。 在 Whatsapp 从 Gallery 页面发送附件时,ShareIntentProvider 将提供原生 Gallery 应用程序和 G
文档中非常清楚,您可以使用以下方式发送多条数据: Intent shareIntent = new Intent(); shareIntent.setAction(Intent.ACTION_SEND
我是一名优秀的程序员,十分优秀!