【问题标题】:Is it possible to develop ppt reader in android是否可以在android中开发ppt阅读器
【发布时间】:2014-06-25 15:25:43
【问题描述】:

是否有任何库可用于开发 ppt 阅读器或可以开发 ppt 阅读器?当我搜索很多示例时,我找不到任何有用的东西。 请建议我如何开始?因为我必须在我的应用程序中实现 ppt viwer

【问题讨论】:

    标签: android


    【解决方案1】:

    您可以使用它通过 Intent 在其他应用中打开 PPT 文件

    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromFile(file));
    intent.setType("application/pdf");
    startActivity( intent );
    

    否则尝试使用 Aspose.Slides for Android

    【讨论】:

    • 在您的意图中,类型不应该是“application/ppt”吗?如果不是,为什么?
    • @Sipka 您可以通过编程方式找到文件的 Mime 类型!看到这个answer
    • 这里是一些 MIME 类型列表androidsbs.blogspot.in/2014/01/…
    • 非常感谢大家...通过使用 mime 类型,我们将使用第三方应用程序(例如 Adob​​e、Office 套件)打开 ppt..我们可以只对父应用程序做一些事情吗?
    猜你喜欢
    • 2014-05-07
    • 1970-01-01
    • 1970-01-01
    • 2015-05-31
    • 2019-07-26
    • 2017-11-05
    • 2017-11-20
    • 2017-02-18
    • 1970-01-01
    相关资源
    最近更新 更多