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!