android_griezmann
android_griezmann

Reputation: 3887

How to get only .pptx(MS - powerpoint) file through Intent.ACTION_GET_CONTENT

I have tried to use the following code but it's showing me all kind of files in the selection. I just want file chooser manu to show only .pptx(Powerpoint) files.

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("application/pptx");
startActivityForResult(intent, PICK_DOC_REQUEST_CODE);

A help would be appreciated!

Upvotes: 1

Views: 1213

Answers (1)

android_griezmann
android_griezmann

Reputation: 3887

I just found a solution by myself by setting up the following mime-type.

intent.setType("application/vnd.openxmlformats-officedocument.presentationml.presentation");

It works like a charm!

Upvotes: 3

Related Questions