我的应用需要打开带有abc.test之类的自定义扩展名的文件。但这不起作用。在清单代码
中 <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file"
android:host="*"
android:pathPattern=".*\\.test"
android:mimeType="*/*" />
</intent-filter>
有什么想法不对吗?