我想让我的过滤器只传递*.pls
文件。根据开发人员文档: http: //developer.android.com/guide/topics/manifest/data-element.html它应该可以工作(我认为),但事实并非如此。.pls
所有文件类型都被传递,而不是预期的行为(仅传递文件)。
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="file" />
<data android:mimeType="*/*" />
<data android:pathPattern=".*\\.pls" />
</intent-filter>