I need to show .pptx and .ppt file in android using third parties API -


i need show .pptx , .ppt file in android using third parties api or jar, if found related that, please guide me read , view .ppt files in android. tried last 1 day cant.even tried apache poi , github projects can't clear output.

google drive comes excellent document viewer, , can send docs intent. renders office docs (so far have seen) quite well.

import android.support.v4.app.sharecompat;  uri ppturi = uri.parse("file://sdcard/sdcard0/test.ppt");                 intent shareintent = sharecompat.intentbuilder.from(this)                                      .settext("open ppt")                                          .settype("application/vnd.ms-powerpoint")                                          .setstream(ppturi )                                          .getintent()                                  .setpackage("com.google.android.apps.docs"); startactivity(shareintent); 

and if want embed in application third party lib : refer this


Comments