Search code examples
androidandroid-intentpowerpointfilechooser

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!


Solution

  • 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!