如何让我的应用程序对打开 PDF 文件的隐式意图可见?

How can I make my app visible to implicit intents to open a PDF file?

我想创建一个可以查看 PDF 文件的简单应用程序。

为了测试我是否删除了模拟器上的默认 PDF 文件查看器,当我想打开 PDF 文件时,模拟器显示 Can't open that file

我怎样才能使我的应用程序对该隐式意图可见,以便在我单击该 PDF 文件时它会 used/shown?
我需要在 manifest.xml 中添加什么 <intent-filter> 配置?

这对我有用,你没有指定你的 sdk 版本但检查它

<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT"/>
    <data android:mimeType="*/*" android:host="*" android:pathPattern=".*.csv" />
</intent-filter>

@see

javdromero 的方法在做了一些调整后对我有用。

1。指定 PDF mime 类型

PDF 文件的 mime 类型是 application/pdf 所以我们必须使用它:

android:mimeType="application/pdf"

android:host 属性可以忽略,因为我们没有从网络上获取任何内容,也没有指定 android:scheme 属性。 android:pathPattern 属性也是如此。查看 <data> 元素的 documentation.

这给我们留下了一条错误消息 Missing URL,文本为红色。

2。忽略缺失 URL 错误

Missing URL 错误涉及整个 <intent-filter> 元素,因为我们应该在那里指定 android:scheme 属性。
但是我们不使用任何方案,所以我们导入 tools 命名空间并指定 tools:ignore 属性:

tools:ignore="AppLinkError"

这给我们留下了以下 <intent-filter> 元素配置:

<intent-filter tools:ignore="AppLinkUrlError">
    <action android:name="android.intent.action.VIEW"/>

    <category android:name="android.intent.category.DEFAULT"/>

    <data android:mimeType="application/pdf" />
</intent-filter>