Sonali
Sonali

Reputation: 65

Is it possible to develop ppt reader in android

Is any library available for developing the ppt reader or it is possible to develope ppt reader? As I search lots of examples, but I am not able to find anything which is usefull. Please suggest me how to start? as I have to implement ppt viwer in my app

Upvotes: 1

Views: 551

Answers (1)

LOG_TAG
LOG_TAG

Reputation: 20589

You can use this for opening the PPT file in other app via Intent

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

Otherwise try with Aspose.Slides for Android

enter image description here

Upvotes: 2

Related Questions