Android file chooser with specific file extensions
I need to show only 'pdf' files in my application when I run default File chooser I'm not able to filter file extensions. final Intent getContentIntent = new Intent(Intent.ACTION_GET_CONTENT); getContentIntent.setType("application/pdf"); getContentIntent.addCategory(Intent.CATEGORY_OPENABLE); Intent intent = Intent.createChooser(getContentIntent, "Select a file"); startActivityForResult(intent, REQUEST_PDF_GET); File chooser shows any kinds of files. I would like to show only pdf files. How can i filter files showed by File chooser. It's an unknown to you what user-installed file browser apps