Android 操作\u发送\u多个mime类型筛选器似乎已完全损坏

Android 操作\u发送\u多个mime类型筛选器似乎已完全损坏,android,android-intent,mime-types,intentfilter,Android,Android Intent,Mime Types,Intentfilter,我目前正在构建一个应用程序,我想在其中处理接收共享图像的操作。使用ACTION\u SEND,通过以下声明,一切正常 <intent-filter> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> <data and

我目前正在构建一个应用程序,我想在其中处理接收共享图像的操作。使用
ACTION\u SEND
,通过以下声明,一切正常

<intent-filter>
    <action android:name="android.intent.action.SEND" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:mimeType="image/*" />
</intent-filter>
你难道不知道吗,我的活动开始在选择图像和视频时被建议,即使它们与PDF无关


将我的应用程序声明为能够接收多个图像,并且只能接收图像的预期方式是什么?

我使用的是内置摄像头应用程序。通过阅读文档,听起来发送者的适当行为是默认设置为
*/*
,但这意味着它将与所有支持发送多个的接收者匹配,而不管他们的mime类型是什么。我正在使用内置的摄像头应用程序。通读文档,发送方的适当行为似乎是默认为
*/*
,但这意味着它将与所有支持发送多个的接收方匹配,而不管它们的mime类型筛选器如何
<intent-filter>
    <action android:name="android.intent.action.SEND_MULTIPLE" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:mimeType="application/pdf" />
</intent-filter>