如何使用 Intent 通过 DataViz 的 Documents To Go 打开 ppt

发布于 2024-11-09 11:59:07 字数 626 浏览 1 评论 0原文

我有一个 Android 应用程序,除其他外,它还可以下载文档。我想提供使用其他应用程序(例如 DataViz 的 Documents To Go 查看器应用程序)打开这些文档的功能。我已经查看了相当多的代码并搜索了这里的其他问题,我认为我只是没有做正确的事情。

例如,假设我正在下载一个 ppt。这段代码应该在下载文档之前验证应用程序是否支持文档类型。

    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setType("application/ppt");

    PackageManager packageManager = getPackageManager();
    List intentList = packageManager.queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
    if (intentList.size() == 0) {
      // error
    }

由于某种原因,这段代码没有在我的设备上注册 DataViz 的应用程序或其他文档查看器。

当然,如果我要调用 startActivity(intent);那会抛出异常。

I have an Android app that among other things is able to download documents. I would like to offer the ability to open these documents with other apps like DataViz's Documents To Go viewer apps. I've looked at quite a bit of code and searched through the other questions on here and I think I'm just not doing something quite right.

For example, let's pretend I'm downloading a ppt. This bit of code is supposed to verify that the document type is supported by an app before downloading the document.

    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setType("application/ppt");

    PackageManager packageManager = getPackageManager();
    List intentList = packageManager.queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
    if (intentList.size() == 0) {
      // error
    }

For some reason this bit of code doesn't register DataViz's apps or the other document viewer on my device.

And of course, if I were to call startActivity(intent); that would throw an exception.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阿楠 2024-11-16 11:59:07

尝试使用 application/vnd.ms-powerpoint 作为 mime 类型。

Try using application/vnd.ms-powerpoint as the mime type.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文