这是我的意图过滤器
<!-- For email attachments -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:mimeType="application/*"
android:pathPattern=".*\\.ccd"
android:scheme="content" />
</intent-filter>
<!-- For file browsers -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="*"
android:mimeType="*/*"
android:pathPattern=".*\\.ccd"
android:scheme="file" />
</intent-filter>
问题是当从gmail打开任何具有未知格式的文件时我的应用程序被打开(例如:dat,zipc等)。打开pdf文件时也会建议。我只需要从gmail打开ccd文件。怎么可能?