首页 > 解决方案 > 意图过滤器适用于奥利奥,但不适用于牛轧糖

问题描述

我有一个意图过滤器来处理 excel.xlsx 文件,它在 android 8 中运行良好,但是当我在 android 7 中尝试它时它不起作用我的意图过滤器是这样的:

 <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />

            <data
                android:host="*"
                android:mimeType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
                android:scheme="file" />

        </intent-filter>

标签: androidandroid-manifestintentfilter

解决方案


推荐阅读