有可能在android中开发ppt阅读器

时间:2014-06-25 07:14:36

标签: android

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

1 个答案:

答案 0 :(得分:2)

您可以使用此功能通过Intent

在其他应用中打开PPT文件
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromFile(file));
intent.setType("application/pdf");
startActivity( intent );

否则请尝试使用 Aspose.Slides for Android

enter image description here