如何仅与方案共享jpeg图像"内容"用我的应用程序?

时间:2016-10-15 19:04:29

标签: android android-intent intentfilter

为了与我的应用程序共享,我添加了像这样的意图过滤器

<intent-filter>
            <data android:mimeType="image/jpeg" android:scheme="content"/>
            <action android:name="android.intent.action.SEND" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>

但是当我想分享照片时,它并没有显示我的应用。但是如果我删除它android:scheme="content"就可以了。

0 个答案:

没有答案