如何显示建议打开自定义扩展名文件的应用程序?

时间:2019-12-27 11:09:17

标签: android android-fileprovider

我的应用需要打开带有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>

有什么想法不对吗?

0 个答案:

没有答案