Reputation: 3887
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
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