I have tried to use the following code to get pdf file from intent but it's showing me all kind of files.I want file chooser menu to show only .pdf files.
intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("application/pdf");
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);