我有一个与我的应用程序关联的自定义文件类型/扩展名。
我添加到Android清单:
<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"
android:host="*"
android:mimeType="*/*"
android:pathPattern=".*\\.iwf" />
</intent-filter>
此代码在android 4.3上运行良好。 但是在android 8.0系统上,请写“没有安装的应用程序可以打开此附件...” 有什么想法吗?