在我的应用程序中,我想使用Intent打开所有类型的文件。我试图打开像.pdf,.text,.image,.gif,.mp3,.mp4,word文件,.html这样的文件。
这些是正确的。但我不知道如何打开.xml文件。
答案 0 :(得分:0)
它可能适合你,请尝试
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.xml" android:mimeType="*/*" />
</intent-filter>