【问题标题】:Intent-Filter for Whatsapp -> share imageWhatsapp 的意图过滤器 -> 共享图像
【发布时间】:2012-05-05 07:06:54
【问题描述】:

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

【问题讨论】:

  • 我们需要更多信息才能为您提供帮助。你知道你需要在那个列表中加入什么样的意图过滤器吗?
  • 我认为它应该像打电话给画廊或拍照......这或多或少是个问题:)

标签: android android-intent intentfilter whatsapp


【解决方案1】:

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

【讨论】:

    【解决方案2】:

    这对我有用:

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

    【讨论】:

      猜你喜欢
      • 2021-11-14
      • 1970-01-01
      • 2016-10-16
      • 2013-12-23
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多